try
{
ResultSet rs = st.executeQuery("SELECT * from historia_clinica where clave_pac = ('"+clave_a_buscar+"')");
System.out.println("Entró");
ResultSetMetaData md = rs.getMetaData();
if(rs.next()) {
System.out.println(clave_a_buscar);
historia_clinica hc2 = new historia_clinica();
hc2.texto11.setText(rs.getString(3));
if(rs.getString(4)=="SI")
{
System.out.println(rs.getString(4));
hc2.cb1.setState(true);
}
else
{
System.out.println(rs.getString(4));
hc2.cb1.setState(false);
}
rs.close();
}
else{
rs.close();
}
}catch(SQLException e){}