Qualcuno sa come ottenere trigger creati su JDBC. Sembra che il problema abbia a che fare con il punto e virgola. Qualsiasi feedback molto apprezzato.Creazione di trigger su JDBC (Oracle)
Il seguente SQL funziona quando eseguito sul database, ma non quando viene eseguito utilizzando il seguente codice Java: s.execute
Connection c=null;
Statement s=null;
try {
c=dataSource.getConnection();
s=c.createStatement();
s.executeUpdate("create or replace trigger startuptrigger after insert on startuptest for each row begin insert into startuptest values(99); end");
s.close();
s=null;
c.close();
c=null;
} catch(SQLException e) {
if(s!=null) { try { s.close(); } catch(Exception f){} }
if(c!=null) { try { c.close(); } catch(Exception f){} }
throw new IOException(e.toString());
}
ho provato (...) e s.executeUpdate (...) e non fa differenza. Sto usando il driver ojdbc5.jar. Oracle restituisce l'errore:
ORA-04098: trigger 'POLICYUAT.STARTUPTRIGGER' is invalid and failed re-validation
+1 per lo stile dei testi di The Doors: _ "alla fine della fine alla fine" _ ;-) – splash