EnglishFrenchSpanish

Ad


OnWorks favicon

ecpg - Online in the Cloud

Run ecpg in OnWorks free hosting provider over Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

This is the command ecpg that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

PROGRAM:

NAME


ecpg - embedded SQL C preprocessor

SYNOPSIS


ecpg [option...] file...

DESCRIPTION


ecpg is the embedded SQL preprocessor for C programs. It converts C programs with embedded
SQL statements to normal C code by replacing the SQL invocations with special function
calls. The output files can then be processed with any C compiler tool chain.

ecpg will convert each input file given on the command line to the corresponding C output
file. Input files preferably have the extension .pgc, in which case the extension will be
replaced by .c to determine the output file name. If the extension of the input file is
not .pgc, then the output file name is computed by appending .c to the full file name. The
output file name can also be overridden using the -o option.

This reference page does not describe the embedded SQL language. See Chapter 33, ECPG -
Embedded SQL in C, in the documentation for more information on that topic.

OPTIONS


ecpg accepts the following command-line arguments:

-c
Automatically generate certain C code from SQL code. Currently, this works for EXEC
SQL TYPE.

-C mode
Set a compatibility mode. mode can be INFORMIX or INFORMIX_SE.

-D symbol
Define a C preprocessor symbol.

-i
Parse system include files as well.

-I directory
Specify an additional include path, used to find files included via EXEC SQL INCLUDE.
Defaults are . (current directory), /usr/local/include, the PostgreSQL include
directory which is defined at compile time (default: /usr/local/pgsql/include), and
/usr/include, in that order.

-o filename
Specifies that ecpg should write all its output to the given filename.

-r option
Selects run-time behavior. Option can be one of the following:

no_indicator
Do not use indicators but instead use special values to represent null values.
Historically there have been databases using this approach.

prepare
Prepare all statements before using them. Libecpg will keep a cache of prepared
statements and reuse a statement if it gets executed again. If the cache runs
full, libecpg will free the least used statement.

questionmarks
Allow question mark as placeholder for compatibility reasons. This used to be the
default long ago.

-t
Turn on autocommit of transactions. In this mode, each SQL command is automatically
committed unless it is inside an explicit transaction block. In the default mode,
commands are committed only when EXEC SQL COMMIT is issued.

-v
Print additional information including the version and the "include" path.

--version
Print the ecpg version and exit.

-?
--help
Show help about ecpg command line arguments, and exit.

NOTES


When compiling the preprocessed C code files, the compiler needs to be able to find the
ECPG header files in the PostgreSQL include directory. Therefore, you might have to use
the -I option when invoking the compiler (e.g., -I/usr/local/pgsql/include).

Programs using C code with embedded SQL have to be linked against the libecpg library, for
example using the linker options -L/usr/local/pgsql/lib -lecpg.

The value of either of these directories that is appropriate for the installation can be
found out using pg_config(1).

EXAMPLES


If you have an embedded SQL C source file named prog1.pgc, you can create an executable
program using the following sequence of commands:

ecpg prog1.pgc
cc -I/usr/local/pgsql/include -c prog1.c
cc -o prog1 prog1.o -L/usr/local/pgsql/lib -lecpg

Use ecpg online using onworks.net services


Free Servers & Workstations

Download Windows & Linux apps

  • 1
    VASSAL Engine
    VASSAL Engine
    VASSAL is a game engine for creating
    electronic versions of traditional board
    and card games. It provides support for
    game piece rendering and interaction,
    and...
    Download VASSAL Engine
  • 2
    OpenPDF - Fork of iText
    OpenPDF - Fork of iText
    OpenPDF is a Java library for creating
    and editing PDF files with a LGPL and
    MPL open source license. OpenPDF is the
    LGPL/MPL open source successor of iText,
    a...
    Download OpenPDF - Fork of iText
  • 3
    SAGA GIS
    SAGA GIS
    SAGA - System for Automated
    Geoscientific Analyses - is a Geographic
    Information System (GIS) software with
    immense capabilities for geodata
    processing and ana...
    Download SAGA GIS
  • 4
    Toolbox for Java/JTOpen
    Toolbox for Java/JTOpen
    The IBM Toolbox for Java / JTOpen is a
    library of Java classes supporting the
    client/server and internet programming
    models to a system running OS/400,
    i5/OS, o...
    Download Toolbox for Java/JTOpen
  • 5
    D3.js
    D3.js
    D3.js (or D3 for Data-Driven Documents)
    is a JavaScript library that allows you
    to produce dynamic, interactive data
    visualizations in web browsers. With D3
    you...
    Download D3.js
  • 6
    Shadowsocks
    Shadowsocks
    A fast tunnel proxy that helps you
    bypass firewalls This is an application
    that can also be fetched from
    https://sourceforge.net/projects/shadowsocksgui/.
    It ha...
    Download Shadowsocks
  • More »

Linux commands

Ad