Postgresql v1.0.0 documentation

Documentation generated by XL CLAIRE v3.3.37 at Fri, 17 Nov 2006

Category index

  1. Connecting a PostgreSQL database

Method index


Postgresql categories


categories
Connecting a PostgreSQL database

Connecting a PostgreSQL database

The Postgresql module is a driver module for the Db interface. It relies the popular libpq library and provide a database connector for PostgreSQL.


Postgresql methods


categories Connecting a PostgreSQL database normal dispatch Postgresql method

Db/pg!(dbName:string) -> Db/Database

equivalent to pg!(dbName,"","","").


categories Connecting a PostgreSQL database normal dispatch Postgresql method

Db/pg!(dbName:string, address:string) -> Db/Database

equivalent to pg!(dbName,address,"","").


categories Connecting a PostgreSQL database normal dispatch Postgresql method

Db/pg!(dbName:string, address:string, user:string) -> Db/Database

equivalent to pg!(dbName,address,user,"").


categories Connecting a PostgreSQL database normal dispatch Postgresql method

Db/pg!(dbName:string, address:string, user:string, password:string) -> Db/Database

Db/pg!(dbName, address, user, password) return a new Database instance connected to a remote PostgreSQL database.