|
ecpgNameecpg — Embedded SQL C preprocessorecpg [ -v ] [ -t ] [ -I include-path ] [ -o outfile ] file1 [ file2 ] [ ... ] Inputsecpg accepts the following command line arguments:
Outputsecpg will create a file or write to stdout.
Descriptionecpg is an embedded SQL preprocessor for the C language and the Postgres. It enables development of C programs with embedded SQL code. Linus Tolke was the original author of ecpg (up to version 0.2). Michael Meskes is the current author and maintainer of ecpg. Thomas Good is the author of the last revision of the ecpg man page, on which this document is based. UsagePreprocessing for CompilationAn embedded SQL source file must be preprocessed before compilation: ecpg [ -d ] [ -o file ] file.pgcwhere the optional -d flag turns on debugging. The .pgc extension is an arbitrary means of denoting ecpg source. You may want to redirect the preprocessor output to a log file. Compiling and LinkingAssuming the Postgres binaries are in /usr/local/pgsql, you will need to compile and link your preprocessed source file: gcc -g -I /usr/local/pgsql/include [ -o file ] file.c -L /usr/local/pgsql/lib -lecpg -lpq GrammarLibrariesThe preprocessor will prepend two directives to the source: #include <ecpgtype.h> #include <ecpglib.h> Variable DeclarationVariables declared within ecpg source code must be prepended with: EXEC SQL BEGIN DECLARE SECTION; Similarly, variable declaration sections must terminate with: EXEC SQL END DECLARE SECTION;
Error HandlingThe SQL communication area is defined with: EXEC SQL INCLUDE sqlca;
The sqlprint command is used with the EXEC SQL WHENEVER statement to turn on error handling throughout the program: EXEC SQL WHENEVER sqlerror sqlprint;and EXEC SQL WHENEVER not found sqlprint;
Connecting to the Database ServerOne connects to a database using the following: EXEC SQL CONNECT dbname;where the database name is not quoted. Prior to version 2.1.0, the database name was required to be inside single quotes. Specifying a server and port name in the connect statement is also possible. The syntax is: dbname[@server][:port]or <tcp|unix>:postgresql://server[:port][/dbname][?options] QueriesIn general, SQL queries acceptable to other applications such as psql can be embedded into your C code. Here are some examples of how to do that. Create Table: EXEC SQL CREATE TABLE foo (number int4, ascii char(16)); EXEC SQL CREATE UNIQUE index num1 on foo(number); EXEC SQL COMMIT; Insert: EXEC SQL INSERT INTO foo (number, ascii) VALUES (9999, 'doodad'); EXEC SQL COMMIT; Delete: EXEC SQL DELETE FROM foo WHERE number = 9999; EXEC SQL COMMIT; Singleton Select: EXEC SQL SELECT foo INTO :FooBar FROM table1 WHERE ascii = 'doodad'; Select using Cursors: EXEC SQL DECLARE foo_bar CURSOR FOR SELECT number, ascii FROM foo ORDER BY ascii; EXEC SQL FETCH foo_bar INTO :FooBar, DooDad; ... EXEC SQL CLOSE foo_bar; EXEC SQL COMMIT; Updates: EXEC SQL UPDATE foo SET ascii = 'foobar' WHERE number = 9999; EXEC SQL COMMIT; NotesThere is no EXEC SQL PREPARE statement. The complete structure definition MUST be listed inside the declare section. See the TODO file in the source for some more missing features. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |