]> granicus.if.org Git - postgresql/commitdiff
Updated jdbc docs to reflect the doc comments received. Most comments were
authorBarry Lind <barry@xythos.com>
Thu, 29 Nov 2001 05:35:51 +0000 (05:35 +0000)
committerBarry Lind <barry@xythos.com>
Thu, 29 Nov 2001 05:35:51 +0000 (05:35 +0000)
already addressed by previous doc updates.

doc/src/sgml/jdbc.sgml

index fcbc95b4df6b61cf8cabdf82ea9b862bb2756aa9..01fb72532dce8fcf5e5e2bf970f778bf7cf8fa4d 100644 (file)
@@ -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>