**.postgresql.util.psqlexception: ERROR operator does not exist integer = charracter varing **
DICA:No operator matches the given name and argument type(s). You might need to add explicit type casts.
Galera, como resolvo este erro, sou iniciante em JAVA
meu codigo esta assim
private void consultar(){
String sql = ("SELECT * FROM public.usuario WHERE id=?");
try {
pst = conexao.prepareStatement(sql);
pst.setString(1,txtUsuId.getText());
rs = pst.executeQuery();
if (rs.next()) {
txtUsuNome.setText(rs.getString(3));
txtUsuLogin.setText(rs.getString(2));
txtUsuIdLoja.setText(rs.getString(7));
cbUsuTipoSetor.setSelectedItem(rs.getString(5));
} else {
//LIMPA OS CAMPOS
JOptionPane.showMessageDialog(null, "Usuario nao cadastrado");
}
} catch (HeadlessException | SQLException e) {
JOptionPane.showMessageDialog(null, e);
}