Message: Illegal operation on empty result set
SQLState: S1000
ErrorCode: 0
Message: Illegal operation on empty result set
SQLState: S1000
ErrorCode: 0
Message: Illegal operation on empty result set
SQLState: S1000
ErrorCode: 0
Message: null, message from server: "Column 'preguntaOID' cannot be null"
SQLState: 23000
ErrorCode: 1048
Me parece de lo más raro, ya que inserta los datos y da fallo.
Aquí la consulta:
Código JAVA:
Ver original
public void insertRespuesta(Respuesta r) { try { stmt = conn.prepareStatement(sql); stmt.clearParameters(); stmt.setString(1, UIDGenerator.getInstance().getKey()); stmt.setString(2, oidp); stmt.setString(3, ocp); stmt.executeUpdate(); } finally { try { if (stmt != null) { stmt.close(); } } } }
¿Qué está fallando?