C++
C++
(OP)
Hi...
I am about develop an application on Borland C++ Builder 5.0, and the idea is to connect the application to a Postgresql 7.2 db that is running on linux...
do you think is going to work? i am kind of doubtful about the Windows-linux connectivity using C++....Will the libpq++ solve the problem? do I need any kind of dbc connection?
Thanks in advance.
I am about develop an application on Borland C++ Builder 5.0, and the idea is to connect the application to a Postgresql 7.2 db that is running on linux...
do you think is going to work? i am kind of doubtful about the Windows-linux connectivity using C++....Will the libpq++ solve the problem? do I need any kind of dbc connection?
Thanks in advance.
RE: C++
ODBC also works quite well, though. Just go to http://odbc.postgresql.org/ and download psqlODBC to install on any Windows system that will be accessing the database, and you have an ODBC connection to PostgreSQL. (I believe psqlODBC simply provides an ODBC "front end" to libpq which makes the actual connection to PostgreSQL)
-------------------------------------------
Big Brother: "War is Peace" -- Big Business: "Trust is Suspicion"
(http://www.cl.cam.ac.uk/~rja14/tcpa-faq.html)
RE: C++
Thanks for your answer...
RE: C++
//Daniel
RE: C++
Pao
RE: C++
so I will have to download the libpq++ library files for Windows, put those on my Windows box and include the library on my program to connect to the Postgresql db?
Where can I get the libpq++ library?
have you used it?...do you know about performance issues? or bugs?
Thanks!