The pgsql module for Qore provides a database driver for PostgreSQL databases. Module documentation: http://qore.org/manual/modules/pgsql-module-doc.html The driver supports the following features:
The driver's name is "pgsql" and the Datasource type constant is SQL::DSPGSQL my Datasource $db(DSPGSQL, $user, $pass, $db); The Qore pgsql driver uses native binary communication with PostgreSQL servers for retrieving values and binding and reading placeholder buffers. It automatically sets per-connection variables on server settings (i.e. it automatically determines if the server is using floats or 64-bit integers for time values, etc). This module is stable and has been extensively tested. The latest source code can be checked out from svn with the following command: svn co https://svn.qore.sf.net/svnroot/qore/module-pgsql/trunk qore-module-pgsql RPMs for Linux can be found at the opensuse build service here: http://download.opensuse.org/repositories/devel:/languages:/misc/ Mac OS/X users can install this module by using macports by issuing the following command sudo port selfupdate |
|