Re: POSTGRES.. NEED HELP

From: raghu ram <raghuchennuru(at)gmail(dot)com>
To: Richy Gerard <idbisoft(at)gmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org, jec-lug(at)googlegroups(dot)com, linuxexperts(at)googlegroups(dot)com
Subject: Re: POSTGRES.. NEED HELP
Date: 2009-09-07 21:32:45
Message-ID: d331f2ee0909071432g1d2308dw50ba0171654d857d@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Mon, Sep 7, 2009 at 8:48 PM, Richy Gerard <idbisoft(at)gmail(dot)com> wrote:

> While using embedded sql in postgres,
> a. Installed the ecpg library
> b. after installation i couldn't compile the program prog1.c
> ERROR:
> richy(at)ubuntu:~/Desktop$ ecpg prog1.pgc
> richy(at)ubuntu:~/Desktop$ cc -c prog1.c
> prog1.c:3:22: error: ecpgtype.h: No such file or directory
> prog1.c:4:21: error: ecpglib.h: No such file or directory
> prog1.c:5:23: error: ecpgerrno.h: No such file or directory
> prog1.c:6:19: error: sqlca.h: No such file or directory
> prog1.pgc:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before
> ‘into’
> prog1.pgc:1:26: warning: multi-character character constant
>
>
>
>
> Follow the below steps to execute the embedded sql program in postgres

(1) ./ecpg -t test.pgc

(2) export LD_LIBRARY_PATH=/usr/local/pgsql/lib

(3) gcc -o test test.c -lpgport -lz -lreadline -ltermcap -lcrypt -lxml2
-lresolv -lnsl -ldl -lm -lbsd -lecpg -lpq -I /usr/local/pgsql/include/ -L
/usr/local/pgsql/lib -lpgtypes

(4) ./test

Regards

Raghu Ram

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Marc Fromm 2009-09-08 16:46:14 update part of a column record
Previous Message Dimitri Fontaine 2009-09-07 18:58:49 Re: POSTGRES.. NEED HELP