Обсуждение: C++ / pgsql Interface

Поиск
Список
Период
Сортировка

C++ / pgsql Interface

От
"R.Stevens"
Дата:
I have recently discovered the C++ interface and want to make use of it.

I have using postgres for development for the past 6 months or so.  I am
an inexperienced c++ programmer.  To matters worse, I am
a COBOL programmer.  But that is beside the point.

My RedHat machine runs an Apache WebServer with PHP compiled in as a
module.  Currently, I use the PHP script to handle my Front End
connection to Postgres.
Not that this makes a difference one way or another to postgres, but
anyway there you have it.

Now, when I originally built postgres, I did not set any options for
using the PGLIB++ interface.  This brings me to my  questions:


1)  Can I safely dump my datqabase and recreate it after recompiling
postgres?

2)  What --with  options will I need at compoile time to enable the C++
Interface?  (--with-libs+DIRS, --with-includes=DIRS)


Your help is GREATLY appreciated!


- Raimee


Re: [GENERAL] C++ / pgsql Interface

От
Brook Milligan
Дата:
   I have recently discovered the C++ interface and want to make use of it.

   2)  What --with  options will I need at compoile time to enable the C++
   Interface?  (--with-libs+DIRS, --with-includes=DIRS)

You shouldn't need any special configure options, unless the configure
script cannot find you c++ compiler (look in the configure output to
see how it responds to the c++ tests).  If it can't find a c++
compiler, use the --with-CXX=compiler option, where compiler is a path
to your c++ compiler.

To prevent compilation of the c++ interface, use the --without-CXX
option.

All this is in the INSTALL file in the root of the postgresql
distribution.

Cheers,
Brook