diff options
Diffstat (limited to 'psql/README')
-rw-r--r-- | psql/README | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/psql/README b/psql/README index 4e56def..7fcd7d8 100644 --- a/psql/README +++ b/psql/README @@ -25,11 +25,27 @@ psql outputs results of queries as lists. Often there will be more than one inst At present 'psql' handles 6 PostgreSQL data types: PGINT4; PGFLOAT8; PGDOUBLE; PGDATE; PGDATETIME and PGVARCHAR. If a query returns tuples of a different data type, these will be compiled into a list (on output) as Pd 'symbols'. In contrast, PGINT4, PGFLOAT8 and PGDOUBLE are compiled into lists as floats. Like non-specified data types, PGDATE, PGDATETIME and PGVARCHAR are compiled into lists as 'symbols'. + +Requirements +------------ + +This object reuires + +libpq >= 7.4 +PD >= 0.37 + Installation ------------ -See the INSTALL file. +Make sure the Makefile includes the path to your PostgreSQL headers. +On most GNU/Linux systems that will be /usr/include/postgresql, but on +Mac OS X you'll need to get them via Fink, MacPorts or something like +that. + +Then from a shell prompt type: +make +make install |