| From: | "Mad" <MadHtr(at)Schif(dot)org> |
|---|---|
| To: | <pgsql-general(at)postgresql(dot)org> |
| Cc: | <madhtr(at)schif(dot)org> |
| Subject: | PQfinish blocking on non-existent IP address ... |
| Date: | 2011-02-02 23:02:40 |
| Message-ID: | 011f01cbc32d$4ae7c900$e0b75b00$@org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
/**********************************
How do I stop PQfinish from blocking?
(try any LAN IP address that doesn't exist on your LAN.)
I compiled it with both VC and MinGW, same result.
(change C:\Program Files (x86) to C:\Program Files for 32bit Windows OS)
Command Line Compile in VC 32bit:
cl x.cpp -I"C:\Program Files (x86)\PostgreSQL\8.4\include" -link "C:\Program
Files (x86)\PostgreSQL\8.4\lib\libpq.lib"
Command Line Compile in MinGW 32bit:
g++ x.cpp -o"x.exe" -I"C:\Program Files (x86)\PostgreSQL\8.4\include"
-L"C:\Program Files (x86)\PostgreSQL\8.4\lib" -llibpq
***********************************/
#include <stdlib.h>
#include <stdio.h>
#include <libpq-fe.h>
int main(int na,char** sa){
printf("Connecting ...\n");
PGconn* lpcn = PQconnectStart("dbname=postgres
host=192.168.250.60");
printf("Connected\n");
printf("Calling PQfinish\n");
PQfinish(lpcn);
printf("PQfinished\n");
return 0;
};
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Mage | 2011-02-03 01:17:28 | isn't "insert into where not exists" atomic? |
| Previous Message | matty jones | 2011-02-02 22:58:05 | set theory question |