-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL
More file actions
35 lines (25 loc) · 1.06 KB
/
INSTALL
File metadata and controls
35 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
1.What is the process to compile Parser3 PgSQL driver?
PgSQL client software and include files should be installed.
Parser3 sources should be in ../../parser3 directory.
Execute the following commands:
./configure --prefix=$HOME/parser3install --silent
make
In case configure could not find directory with your
PgSQL client software include files, specify it with
--with-pgsql-inc=DIR DIR is the PgSQL includes directory
option.
2.What is the process to install Parser3 PgSQL driver?
make install
Installation layout:
$prefix/lib/
libparser3pgsql.so -- driver's dynamic library
NOTE:
make sure that Parser3 main configuration file, $prefix/bin/auto.p
has in $SQL[...] configuration section a tab-delimited line like this:
pgsql $sqldriversdir/libparser3pgsql.so libpq.so
which specifies
protocol name
path to Parser 'libparser3pgsql' dynamic library
path to PgSQL client 'libpq' dynamic library
[you sould have it from from your PgSQL client installation]
$Id: INSTALL,v 1.6 2013/07/07 16:25:48 moko Exp $