Subject Re: How2 save javaobject in Firebird ?
Author mozheyko_d
--- In Firebird-Java@yahoogroups.com, "Roman Rokytskyy"
<rrokytskyy@a...> wrote:
> > Object o = new SomeObject();
> > statement.setObject(1, 1);
> > statement.setObject(2, o);
>
> According to the specification JDBC driver is not required to
> serialize/deserialze objects itself. You have to serialize your
object into
> byte array and use statement.setBytes(...) call.
>
> Roman

And can you show example of using setObject() method ?

Thanks