Libodbc++ Installation | ||
---|---|---|
<<< Previous | Next >>> |
The following information applies for installing libodbc++ on unices.
First, you need to configure libodbc++ for your system. Go into the source directory and do:
$ ./configure |
$ ./configure --with-iodbc=DIR |
If you aren't using iODBC, try
$ ./configure --with-odbc=DIR |
If you wish to install libodbc++ in a location other than /usr/local, add --prefix=PREFIX to the ./configure arguments.
If the c++ compiler you wish to use to compile this package isn't the system default one, you will need to set the environment variable CXX to the name of it's executable. For example, if you have an old gcc or egcs as a system default compiler, but installed a newer gcc in /usr/local/gcc, do like this:
$ CXX=/usr/local/egcs/bin/c++ ./configure --with-iodbc |
If you wish to enable support for multithreaded programs, add --enable-threads to the ./configure arguments. On UNIX, this requires pthreads and will probably not yet work on anything else than linux and solaris. The library built will have suffix '-mt' appended to it's name if threads are enabled.
If you wish to enable support for QT, use the --with-qt argument. You can optionally specify where your QT lives by using --with-qt=QTDIR. The --with-qt-includes=DIR, --with-qt-libs=DIR and --with-qt-moc=PATH options might be handy if you have a strange QT installation. This will compile a second version of the library named libodbc++_qt in the subdirectory qt. Note that you must define ODBCXX_QT when compiling a program that links with libodbc++_qt.
The two "demo" programs that come with libodbc++ aren't built by default. To enable them, use --with-isqlxx and/or --with-qtsqlxx to build isql++ respectively qtsql++.
By default, a number of test programs are built with the library. If you do not wish to build them, use --without-tests.
You can control the ODBC version libodbc++ uses by specifying: --with-odbc-version=ODBCVER, where ODBCVER should be a four-digit hexadecimal value representing the ODBC version. For example:
$ ./configure --with-odbc-version=0x0250 |
Just type:
$ make |
If it all goes well, you can try a couple of the test programs in tests/. You'll need to configure some datasources before running most of the tests. For simply reality-checking your current ODBC setup, you can try running tests/dmtest, which lists all available datasources and drivers.
If you have write privileges in PREFIX, just do:
$ make install |
$ su root -c 'make install' |
<<< Previous | Home | Next >>> |
QT | Win32 |