diff options
author | Barry Lind <barry@xythos.com> | 2001-11-29 05:35:51 +0000 |
---|---|---|
committer | Barry Lind <barry@xythos.com> | 2001-11-29 05:35:51 +0000 |
commit | 65aed07d809e73ad8303df77dcd8117a10f2454e (patch) | |
tree | 2dd247d4b036424ee286d66827d6d928757adf8d | |
parent | d0c1769b776346469de8a9a83d50ade8aed60cd7 (diff) | |
download | postgresql-65aed07d809e73ad8303df77dcd8117a10f2454e.tar.gz postgresql-65aed07d809e73ad8303df77dcd8117a10f2454e.zip |
Updated jdbc docs to reflect the doc comments received. Most comments were
already addressed by previous doc updates.
-rw-r--r-- | doc/src/sgml/jdbc.sgml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/src/sgml/jdbc.sgml b/doc/src/sgml/jdbc.sgml index fcbc95b4df6..01fb72532dc 100644 --- a/doc/src/sgml/jdbc.sgml +++ b/doc/src/sgml/jdbc.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/jdbc.sgml,v 1.33 2001/11/27 13:02:33 ishii Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/jdbc.sgml,v 1.34 2001/11/29 05:35:51 barry Exp $ --> <chapter id="jdbc"> @@ -516,6 +516,17 @@ st.close(); automatically. </para> </listitem> + + <listitem> + <para> + <classname>ResultSet</classname> is currently read only. + You can not update data through the <classname>ResultSet</classname>. + If you want to update data you need to do it the old fashioned way + by issuing a <acronym>SQL</acronym> update statement. This is + in conformance with the <acronym>JDBC</acronym> specification + which does not require drivers to provide this functionality. + </para> + </listitem> </itemizedlist> </para> </sect2> |