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
1af403e4
Commit
1af403e4
authored
Nov 02, 2003
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Complete options help and put it in less random order.
parent
33ab0d9e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
7 deletions
+38
-7
doc/src/sgml/ref/ecpg-ref.sgml
doc/src/sgml/ref/ecpg-ref.sgml
+32
-1
src/interfaces/ecpg/preproc/ecpg.c
src/interfaces/ecpg/preproc/ecpg.c
+6
-6
No files found.
doc/src/sgml/ref/ecpg-ref.sgml
View file @
1af403e4
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/ecpg-ref.sgml,v 1.2
8 2003/09/20 20:12:05 tgl
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/ecpg-ref.sgml,v 1.2
9 2003/11/02 12:55:24 petere
Exp $
PostgreSQL documentation
-->
...
...
@@ -76,6 +76,17 @@ PostgreSQL documentation
</listitem>
</varlistentry>
<varlistentry>
<term><option>-C <replaceable>mode</replaceable></option></term>
<listitem>
<para>
Set a compatibility mode. <replaceable>mode</replaceable> may
be <literal>INFORMIX</literal> or
<literal>INFORMIX_SE</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-D <replaceable>symbol</replaceable></option></term>
<listitem>
...
...
@@ -85,6 +96,15 @@ PostgreSQL documentation
</listitem>
</varlistentry>
<varlistentry>
<term><option>-i</option></term>
<listitem>
<para>
Parse system include files as well.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-I <replaceable class="parameter">directory</replaceable></option></term>
<listitem>
...
...
@@ -111,6 +131,17 @@ PostgreSQL documentation
</listitem>
</varlistentry>
<varlistentry>
<term><option>-r <replaceable>option</replaceable></option></term>
<listitem>
<para>
Selects a run-time behavior. Currently,
<replaceable>option</replaceable> can only be
<literal>no_indicator</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-t</option></term>
<listitem>
...
...
src/interfaces/ecpg/preproc/ecpg.c
View file @
1af403e4
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.8
0 2003/10/06 06:44:55 meskes
Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.8
1 2003/11/02 12:55:24 petere
Exp $ */
/* New main for ecpg, the PostgreSQL embedded SQL precompiler. */
/* (C) Michael Meskes <meskes@postgresql.org> Feb 5th, 1998 */
...
...
@@ -41,18 +41,18 @@ help(const char *progname)
printf
(
"Options:
\n
"
);
printf
(
" -c automatically generate C code from embedded SQL code;
\n
"
" currently this works for EXEC SQL TYPE
\n
"
);
printf
(
" -C MODE set compatibility mode;
\n
"
" MODE may be one of
\"
INFORMIX
\"
,
\"
INFORMIX_SE
\"\n
"
);
#ifdef YYDEBUG
printf
(
" -d generate parser debug output
\n
"
);
#endif
printf
(
" -C MODE set compatibility mode;
\n
"
" MODE may be one of
\"
INFORMIX
\"
,
\"
INFORMIX_SE
\"\n
"
);
printf
(
" -r OPTION specify runtime behaviour;
\n
"
" OPTION may only be
\"
no_indicator
\"\n
"
);
printf
(
" -D SYMBOL define SYMBOL
\n
"
);
printf
(
" -i parse system include files as well
\n
"
);
printf
(
" -I DIRECTORY search DIRECTORY for include files
\n
"
);
printf
(
" -o OUTFILE write result to OUTFILE
\n
"
);
printf
(
" -r OPTION specify runtime behaviour;
\n
"
" OPTION may only be
\"
no_indicator
\"\n
"
);
printf
(
" -t turn on autocommit of transactions
\n
"
);
printf
(
" -i parse system include files as well
\n
"
);
printf
(
" --help show this help, then exit
\n
"
);
printf
(
" --version output version information, then exit
\n
"
);
printf
(
"
\n
If no output file is specified, the name is formed by adding .c to the
\n
"
...
...
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