Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
71ac48fd
Commit
71ac48fd
authored
Mar 24, 2011
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documented some ecpg command line options that were missing:
-r no_indicator -r prepare -r questionsmarks
parent
27dc7e24
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
3 deletions
+29
-3
doc/src/sgml/ref/ecpg-ref.sgml
doc/src/sgml/ref/ecpg-ref.sgml
+29
-3
No files found.
doc/src/sgml/ref/ecpg-ref.sgml
View file @
71ac48fd
...
@@ -135,9 +135,35 @@ PostgreSQL documentation
...
@@ -135,9 +135,35 @@ PostgreSQL documentation
<term><option>-r <replaceable>option</replaceable></option></term>
<term><option>-r <replaceable>option</replaceable></option></term>
<listitem>
<listitem>
<para>
<para>
Selects a run-time behavior. Currently,
Selects run-time behavior. <replaceable>Option</replaceable> can be
<replaceable>option</replaceable> can only be
one of the following:
<literal>no_indicator</literal>.
<variablelist>
<varlistentry>
<term><option>no_indicator</option></term>
<listitem>
<para>
Do not use indicators but instead use special values to represent
NULLs. Historically there have been databases using this approach.
</para>
</varlistentry>
<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>
<term><option>questionmarks</option></term>
<listitem>
<para>
Allow questionmark as placeholder for compatibility reasons.
This used to be the default long ago.
</para>
</varlistentry>
</variablelist>
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment