Commit 01dd34d5 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix broken markup, and remove tabs

parent 71ac48fd
...@@ -138,30 +138,33 @@ PostgreSQL documentation ...@@ -138,30 +138,33 @@ PostgreSQL documentation
Selects run-time behavior. <replaceable>Option</replaceable> can be Selects run-time behavior. <replaceable>Option</replaceable> can be
one of the following: one of the following:
<variablelist> <variablelist>
<varlistentry> <varlistentry>
<term><option>no_indicator</option></term> <term><option>no_indicator</option></term>
<listitem> <listitem>
<para> <para>
Do not use indicators but instead use special values to represent Do not use indicators but instead use special values to represent
NULLs. Historically there have been databases using this approach. NULLs. Historically there have been databases using this approach.
</para> </para>
</varlistentry> </listitem>
<varlistentry>
<term><option>prepare</option></term>
<listitem>
<para>
Prepare all statements before using them. Libecpg will keep a cache of
prepared statments and reuse a statement if it gets executed again. If the
cache runs full, libecpg will free the least used statement.
</para>
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term><option>questionmarks</option></term> <term><option>prepare</option></term>
<listitem> <listitem>
<para> <para>
Allow questionmark as placeholder for compatibility reasons. Prepare all statements before using them. Libecpg will keep a cache of
This used to be the default long ago. prepared statments and reuse a statement if it gets executed again. If the
</para> cache runs full, libecpg will free the least used statement.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>questionmarks</option></term>
<listitem>
<para>
Allow questionmark as placeholder for compatibility reasons.
This used to be the default long ago.
</para>
</listitem>
</varlistentry> </varlistentry>
</variablelist> </variablelist>
</para> </para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment