Subject | Re: Cursors |
---|---|
Author | Roman Rokytskyy |
Post date | 2004-06-03T12:07:34Z |
> Is it possible, already, to use cursors in Jaybird 1.5?Yes, in version 1.5 RC3 when you use
> rs.absolute(n); rs.last();
ResultSet.TYPE_SCROLL_INSENSITIVE. But beware of the fact that it
cashes complete result set on the client, this needs memory. Also when
using this feature no "UPDATE ... WHERE CURRENT OF ..." is possible.
Roman