I tried to create a simple c programm which should connect to my postgres db, but I am not able to get aware of the following compilation errors...
I\'ve a table created like: CREATE TABLE tbl_test ( idbigserialPRIMARY KEY, interestintARRAY[2] ); I got PGresult* res using PQexec(conn, \"SELECT * FROM tbl_test\");
I have a problem with libpq on windows.Connecting to a db a开发者_如何学Cnd running a \"select * from some_table;\" is very slow.
after hours of documentations/boards/mailinglists and no progress I may ask you: How do I \'encode\' my data to use it for binary transport using libpq\'s PQexecParams(.) ?
I\'m using the libpq library in C to accessing my PostgreSQL database. So, when I do res = PQexec(conn, \"SELECT point FROM test_point3d\"); I don\'t know how to convert the PGresult I got to my custo
I need to compile libpq with 10.5 for using later in the simulator. I can use the libpq in the device without problems.
I\'ve created a Objective-C class to interface with PostgreSQL using libpq. It mostly works but I have one small problem - the connection seems to disappear randomly.