i have to call one c function users() present in one c file which is as
follows:
#include
#include "pgsql/postgres.h"
void users();
int main()
{
users();
}
void users()
{
FILE *fp;
fp = fopen("/home/suresh/trigger/test.txt","w");
fputs("Hello this is c function",fp)
[EMAIL PROTECTED] writes:
> Here are the facts:
Postgres version? Tables needed by the function (declaration and
sample data)?
I tried to reproduce this problem by guessing at a table declaration
and some data, but (unsurprisingly) did not see any problem. Please
submit a more complete report.
Kristis Makris ([EMAIL PROTECTED]) reports a bug with a severity of 2
The lower the number the more severe it is.
Short Description
pqReadData() -- backend closed the channel unexpectedly.
Long Description
Here are the facts:
I have a plpgsql function that should return a value out of a query.
Christian HUGUES ([EMAIL PROTECTED]) reports a bug with a severity of 2
The lower the number the more severe it is.
Short Description
pqReadData() -- backend closed the channel unexpectedly
Long Description
I've installed the PostgreSQL 7.0.3 on a RedHat 6.1, everything was well during
installa