You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The host name of the server. Defaults to <literal>localhost</literal>.
258
+
The host name of the server. Defaults to <literal>localhost</literal>. To specify an IPv6 address your must enclose the <replaceable class="parameter">host</replaceable> parameter with square brackets, for example:
259
+
<programlisting>
260
+
jdbc:postgresql://[::1]:5740/accounting
261
+
</programlisting>
256
262
</para>
257
263
</listitem>
258
264
</varlistentry>
@@ -451,16 +457,6 @@ st.close();
451
457
</para>
452
458
</listitem>
453
459
454
-
<listitem>
455
-
<para>
456
-
<classname>ResultSet</classname> is currently read only.
457
-
You can not update data through the <classname>ResultSet</classname>.
458
-
If you want to update data you need to do it the normal way
459
-
by using the <acronym>SQL</acronym> statement <command>UPDATE</command>. This is
460
-
in conformance with the <acronym>JDBC</acronym> specification
461
-
which does not require drivers to provide updatable result sets.
462
-
</para>
463
-
</listitem>
464
460
</itemizedlist>
465
461
</para>
466
462
</sect2>
@@ -606,11 +602,11 @@ st.close();
606
602
607
603
<para>
608
604
<xref linkend="jdbc-binary-data-example"> contains some examples on
609
-
how to process binary data using the PostgreSQL JDBC driver.
605
+
how to process binary data using the PostgreSQL <acronym>JDBC</> driver.
610
606
</para>
611
607
612
608
<example id="jdbc-binary-data-example">
613
-
<title>Processing Binary Data in JDBC</title>
609
+
<title>Processing Binary Data in <acronym>JDBC</></title>
614
610
615
611
<para>
616
612
For example, suppose you have a table containing the file names of
@@ -2490,12 +2486,13 @@ public void unlink(int oid) throws SQLException
2490
2486
<title>Connection Pools and Data Sources</title>
2491
2487
2492
2488
<para>
2493
-
JDBC 2 introduced standard connection pooling features in an
2494
-
add-on API known as the <acronym>JDBC</acronym> 2.0 Optional
2489
+
<acronym>JDBC</> 2 introduced standard connection pooling features in an
2490
+
add-on <acronym>API</> known as the <acronym>JDBC</acronym> 2.0 Optional
2495
2491
Package (also known as the <acronym>JDBC</acronym> 2.0
2496
2492
Standard Extension). These features have since been included in
2497
-
the core JDBC 3 API. The <productname>PostgreSQL</productname>
2498
-
<acronym>JDBC</acronym> drivers support these features if it has been compiled with
0 commit comments