Como crear un metodo para consultar en una tabla de una base de datos
public String consultar(){ try { String sql="select * from usuario where user='"+user+"'"; ResultSet rs; rs = st.executeQuery(sql); if(rs.next()){ return "usuario existente"; }else{ return "usuario inexistente"; } } catch (Exception e) { return "error"; } }