chrisonmaui,
I can show the java code ...
I think it's ok ... but never completely sure!!!
....
String cSQL = "INSERT INTO LW_astat auftragsnummer,astatnum,astatid,status) VALUES ('56923',10,0,1)
Connection conn = getConnection();
try {
Statement st = conn.createStatement();
LOTrace.SQL(cSQL);
st.executeUpdate(cSQL); ///here the and "invalid cursor state" error is thrown
st.close();
} catch(SQLException e){
LOTrace.error(e.getMessage());
throw e;
}
...