Questions about embedded-sql!

From: "Anna Langer" <anna_langer(at)hotmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Questions about embedded-sql!
Date: 1999-04-20 02:18:11
Message-ID: 19990420091812.48659.qmail@hotmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi!

We are having some problems with writing embedded-sql. We want to
write like this but it doesn't work. test1 is our table in our
database.

res = PQexec(conn, "select * from test1");
if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
{
fprintf(stderr, "DECLARE CURSOR command failed\n");
PQclear(res);
exit_nicely(conn);
}
PQclear(res);

In the example that we have get this part from are they using CURSORS.
Do you have to use them? Does anybody know where we can find some
examples anbout embedded-sql in C or C++? Does anybody know where we
can find anyting about CURSOR?

We really need some help!!!!

Anna and Maria

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Michael J Davis 1999-04-20 02:34:03 RE: [SQL] OUTER JOINS
Previous Message Michael J Davis 1999-04-20 02:10:39 RE:[SQL] OUTER JOINS