request ?

From: "vinoth david" <online(dot)vinoth(at)gmail(dot)com>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: request ?
Date: 2006-07-13 06:37:27
Message-ID: b51fc7540607122337ka80af1cu1b4242a3b662c0e7@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

hello,
i am using libpq.lib to access the postgresql database in windows xp using
c++ (VC++ 6.0) , i am getting one error when compiling ,kindly help me .
this is the error ..

*libpq.lib : fatal error LNK1136: invalid or corrupt file*

this is my code

#include <stdlib.h>
#include <libpq-fe.h>

int main()
{
PGconn *myconnection = PQconnectdb("");
if(PQstatus(myconnection) == CONNECTION_OK)
printf("connection made\n");
else
printf("connection failed\n");
PQfinish(myconnection);
return EXIT_SUCCESS;
}

thanks and regards

vinoth

Browse pgsql-interfaces by date

  From Date Subject
Next Message Pavel Golub 2006-07-20 13:10:07 Proposal pg_dump & pg_restore
Previous Message wolfgang.wening 2006-07-11 15:57:24 No library found for -lpq