The host name of the server. Defaults to <literal>localhost</literal>.
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:
<programlisting>
jdbc:postgresql://[::1]:5740/accounting
</programlisting>
</para>
</listitem>
</varlistentry>
...
...
@@ -451,16 +457,6 @@ st.close();
</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 normal way
by using the <acronym>SQL</acronym> statement <command>UPDATE</command>. This is
in conformance with the <acronym>JDBC</acronym> specification
which does not require drivers to provide updatable result sets.
</para>
</listitem>
</itemizedlist>
</para>
</sect2>
...
...
@@ -606,11 +602,11 @@ st.close();
<para>
<xref linkend="jdbc-binary-data-example"> contains some examples on
how to process binary data using the PostgreSQL JDBC driver.
how to process binary data using the PostgreSQL <acronym>JDBC</> driver.
</para>
<example id="jdbc-binary-data-example">
<title>Processing Binary Data in JDBC</title>
<title>Processing Binary Data in <acronym>JDBC</></title>
<para>
For example, suppose you have a table containing the file names of
...
...
@@ -2490,12 +2486,13 @@ public void unlink(int oid) throws SQLException
<title>Connection Pools and Data Sources</title>
<para>
JDBC 2 introduced standard connection pooling features in an
add-on API known as the <acronym>JDBC</acronym> 2.0 Optional
<acronym>JDBC</> 2 introduced standard connection pooling features in an
add-on <acronym>API</> known as the <acronym>JDBC</acronym> 2.0 Optional
Package (also known as the <acronym>JDBC</acronym> 2.0
Standard Extension). These features have since been included in
the core JDBC 3 API. The <productname>PostgreSQL</productname>
<acronym>JDBC</acronym> drivers support these features if it has been compiled with