Subject | Re: [Firebird-Java] How2 save javaobject in Firebird ? |
---|---|
Author | Roman Rokytskyy |
Post date | 2004-12-17T12:52:38Z |
> Object o = new SomeObject();According to the specification JDBC driver is not required to
> statement.setObject(1, 1);
> statement.setObject(2, o);
serialize/deserialze objects itself. You have to serialize your object into
byte array and use statement.setBytes(...) call.
Roman