postgresql/contrib/odbc
Peter Eisentraut 424f0edcb8 Fix relative path references so that make knowns which dependencies refer
to one another. Sort out builddir vs srcdir variable namings. Remove some
now obsoleted make variables.
2000-08-31 16:12:35 +00:00
..
Makefile Fix relative path references so that make knowns which dependencies refer 2000-08-31 16:12:35 +00:00
README.odbc Add missing /contrib files 2000-06-19 14:02:16 +00:00
odbc-pre7.source Internal functions to support newest ODBC driver {fn ...} conventions. 2000-04-11 15:53:13 +00:00
odbc.c Remove <values.h> inclusions, no-longer-needed MAXINT definitions. 2000-07-28 02:13:52 +00:00
odbc.sql Update to /contrib from Karel. 2000-06-19 13:54:50 +00:00

README.odbc

This directory contains support functions for the ODBC driver
supplied with PostgreSQL-7.0.

To enable additional ODBC functions with PostgreSQL-7.0, simply
execute the commands in odbc.sql:

psql
Welcome to psql, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help on internal slash commands
       \g or terminate with semicolon to execute query
       \q to quit

postgres=# \i odbc.sql
CREATE
...


To enable additional ODBC functions with versions of PostgreSQL
prior to PostgreSQL-7.0 (e.g. PostgreSQL-6.5.3), build the shared
library and SQL commands as follows:

make pre7
psql
Welcome to psql, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help on internal slash commands
       \g or terminate with semicolon to execute query
       \q to quit

postgres=# \i odbc-pre7.sql
CREATE
...