From: | Kovács Péter <peter(dot)kovacs(at)sysdata(dot)siemens(dot)hu> |
---|---|
To: | Steven Dahlin <Steven_dahlin(at)hotmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org |
Subject: | Re: jdbc capabilities |
Date: | 2001-10-16 09:48:35 |
Message-ID: | 8A2DDD7ED7876A4698F6FF204F62CBFC014E517C@budg112a.sysdata.siemens.hu |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-jdbc |
You can check the capabilities even at runtime querying the DatabaseMetaData
object returned by java.sql.Connection.getMetaData(). At design time you can
look at the source code :-). The result set is scrollable, but for this
purpose a client side cache is used instead of a backend side cursor, what
would be more useful for large result set. Consequently the result set is
not updatable :-(.
Again, the source code is your best friend.
-----Original Message-----
From: Steven Dahlin [mailto:Steven_dahlin(at)hotmail(dot)com]
Sent: Friday, October 12, 2001 7:52 AM
To: pgsql-jdbc(at)postgresql(dot)org
Subject: [JDBC] jdbc capabilities
What capabilities does the postgresql jdbc have? Specifically I was testing
creating a scrollable, updatable resultset so that I could update a field.
However, upon trying to execute java.sql.ResultSet.updateString() I was
informed that the method was not yet implemented. Is there documentation
that specifically covers what is implemented and/or available with
postgresql jdbc?
Thanks,
Steve
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Moyle | 2001-10-16 11:02:48 | stack dump |
Previous Message | Kovács Péter | 2001-10-16 07:20:20 | JDBC 2 ResultSet and cursors |