Subject GDS Exception. No message for code 335544794 found
Author schroed1974 <schroed74@hotmail.com>
Hello all,
I am trying firebirdsql 1.0.2 for win with JayBird driver (RC3). I
have used Interbase 6.0 until now, when I decided to go to
Firebirdsql.
Whenever I try to execute "executeUpdate" (or simply "execute") for a
preparedStatement, I get

org.firebirdsql.jdbc.FBSQLException: GDS Exception. No message for
code 335544794 found.
at
org.firebirdsql.jdbc.FBPreparedStatement.internalE
xecute(FBPreparedStatement.java:425)
at
org.firebirdsql.jdbc.FBPreparedStatement.execute(F
BPreparedStatement.java:384)
[...]
at org.firebirdsql.gds.GDSException: No message for code 335544794
found.
at org.firebirdsql.jgds.GDS_Impl.readStatusVector(GDS_Impl.java:1683)
at org.firebirdsql.jgds.GDS_Impl.receiveResponse(GDS_Impl.java:1636)
at org.firebirdsql.jgds.GDS_Impl.isc_dsql_execute2(GDS_Impl.java:865)
at
org.firebirdsql.jca.FBManagedConnection.executeSta
tement(FBManagedConnection.java:782)
at
org.firebirdsql.jdbc.FBConnection.executeStatement
(FBConnection.java:1072)
at
org.firebirdsql.jdbc.FBPreparedStatement.internalE
xecute(FBPreparedStatement.java:420)
at
org.firebirdsql.jdbc.FBPreparedStatement.execute(F
BPreparedStatement.java:384)
[...]



Here is the code (that works with IB 6.0 and interclient):


public int execUpdate(PreparedStatement ps) throws Exception {
int x = 0;
try {
/*x = */ps.execute();
} catch (SQLException ex) {
String code = "309";
l.error(code+"-"+ex+" prep. stat. "+ps);
ex.printStackTrace();
throw new Exception(ex.toString(), ex, code);
}
return x;
}

Any help would be appreciated,
Angelo Mariano