Andrew Maclean wrote:
I am using C++ and trying to programatically import a large
object from the client side into a server.
In that context, the simplest way is to use libpq's C functions:
http://www.postgresql.org/docs/8.3/static/lo-interfaces.html
Best regards,
--
Daniel
PostgreSQL
I am using C++ and trying to programatically import a large object
from the client side into a server. I am using QT and, for the server
side I can pass a command like:
insert into x values('x1',lo_import('c:/temp/x1.txt'));
Which works.
However this will not work from the client side.
For the cli