> Hi.
>
[quoted text clipped - 6 lines]
> thanks
> Przemm
kuassi.mensah@gmail.com napisal(a):
> Assuming we are not talking about ResultSet, as described in my
> following blog entry
> http://db360.blogspot.com/2006/09/manipulating-tabular-data-using-jdbc_03.html
> there are 5 RowSet model (JdbcRowSet, CachedRowSet, WebRowSet,
> JoinRowSet and FileterdRowSet). Which one are you using?
I'm useing JdbcRowSet (OracleJDBCRowSet in implementation of Oracle)
> Fwiw, I have working examples in chapter 8 of my book.
>
[quoted text clipped - 3 lines]
> > version (with v9 is the same), jdbc - ojdbc14.jar. With jdbc drivers
> > from commercial developers there is no problem. Any ideas?
kuassi.mensah@gmail.com - 13 Dec 2006 17:14 GMT
JDBCRowSet objects are by default scrollable (i.e.,
ResultSet.TYPE_SCROLL_SENSITIVE) and read-only (i.e.,
ResultSet.CONCUR_READ_ONLY) but can be made updatable by calling
setReadOnly (false).
> kuassi.mensah@gmail.com napisal(a):
> > Assuming we are not talking about ResultSet, as described in my
[quoted text clipped - 12 lines]
> > > version (with v9 is the same), jdbc - ojdbc14.jar. With jdbc drivers
> > > from commercial developers there is no problem. Any ideas?
kuassi.mensah@gmail.com - 13 Dec 2006 17:15 GMT
JDBCRowSet objects are by default scrollable (i.e.,
ResultSet.TYPE_SCROLL_SENSITIVE) and read-only (i.e.,
ResultSet.CONCUR_READ_ONLY) but can be made updatable by calling
setReadOnly (false).
> kuassi.mensah@gmail.com napisal(a):
> > Assuming we are not talking about ResultSet, as described in my
[quoted text clipped - 12 lines]
> > > version (with v9 is the same), jdbc - ojdbc14.jar. With jdbc drivers
> > > from commercial developers there is no problem. Any ideas?
przemmal@wp.pl - 14 Dec 2006 13:55 GMT
kuassi.mensah@gmail.com napisal(a):
> JDBCRowSet objects are by default scrollable (i.e.,
> ResultSet.TYPE_SCROLL_SENSITIVE) and read-only (i.e.,
> ResultSet.CONCUR_READ_ONLY) but can be made updatable by calling
> setReadOnly (false).
I have tried setReadOnly(false) and
setConcurrency(ResulSet.CONCUR_UPDATABLE), but that does not work :(
kuassi.mensah@gmail.com - 15 Dec 2006 23:49 GMT
Then we have a bug!
> kuassi.mensah@gmail.com napisal(a):
> > JDBCRowSet objects are by default scrollable (i.e.,
[quoted text clipped - 4 lines]
> I have tried setReadOnly(false) and
> setConcurrency(ResulSet.CONCUR_UPDATABLE), but that does not work :(
przemmal@wp.pl - 16 Dec 2006 18:02 GMT
kuassi.mensah@gmail.com napisal(a):
> Then we have a bug!
Thanks Kuassi for answer. I have read first chapter of your book. I
think that you did great job.
przemmal@wp.pl - 16 Dec 2006 18:46 GMT
Kuassi do you know how this bug can be reported to Oracle's support?
kuassi.mensah@gmail.com - 17 Dec 2006 21:01 GMT
Hi,
Thanks for your appreciation of the first chapter of book; the other
chapters are as good/useful :)
Regarding the bug, i am following up internally with the lead
developer, so it will be fixed as soon as possible but if this is
urgent, please log a TAR and bug with Oracle support.
Cheers, Kuassi
> kuassi.mensah@gmail.com napisal(a):
> > Then we have a bug!
>
> Thanks Kuassi for answer. I have read first chapter of your book. I
> think that you did great job.
przemmal@wp.pl - 18 Dec 2006 17:14 GMT
kuassi.mensah@gmail.com napisal(a):
> Hi,
>
[quoted text clipped - 4 lines]
> developer, so it will be fixed as soon as possible but if this is
> urgent, please log a TAR and bug with Oracle support.
thanks for help
Przemm