From d211aedbcb8ab72a35ec8a457bba2e368da97ba3 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 27 Mar 2002 12:21:36 +0000 Subject: [PATCH] r1684: *** empty log message *** --- ChangeLog | 2 ++ NEWS | 9 +++++++-- doc/intro.sgml | 23 ++++++++++++++++++++++- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2ce065e..73b1e12 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,8 @@ * test-suite/xptest-clsql.cl Added testint for 64-bit integers + + * Additons to installation docs 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net) * interfaces/postgresql-socket/postgresql-socket-api.cl: diff --git a/NEWS b/NEWS index debb2f9..0ae042f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ -Added :types specifier to optimize querys with -integer (32 and 64 bit) and double field types. +- Added optional field types specifier for queries +to optimize query times, reduce garbage, reduce +programmer effort to convert strings to numbers. + +- New test suite using XPTest + +- Documentation improvements diff --git a/doc/intro.sgml b/doc/intro.sgml index 7c8c227..4ee389e 100644 --- a/doc/intro.sgml +++ b/doc/intro.sgml @@ -152,7 +152,7 @@ in the root directory of &clsql; to build the libraries Load &uffi; - Unpack the appropriate &uffi; version for your system which creates a directory + Unzip or untar the &uffi; distribution which creates a directory for the &uffi; files. Add that directory to Defsystem's mk:*central-registry*. You can do that by either pushing the pathname of the directory onto this variable, or use the new add-registry-location present in the newest versions of @@ -165,6 +165,27 @@ use the new add-registry-location present in the newest ver + + Load &clsql; modules + + Unzip or untar the &clsql; distribution which creates a directory +for the &clsql; files. Add that directory to Defsystem's mk:*central-registry*. +You can do that by either pushing the pathname of the directory onto this variable, or +use the new add-registry-location present in the newest versions of +&defsystem;. The following example code assumes the &clsql; files reside in the +/usr/local/src/lisp/clsql directory. You need to load, at a minimum, +the main :clsql system and at least one interface system. + +(mk:add-registry-location #P"/usr/local/src/lisp/clsql") +(mk:load-system :clsql) ; main clsql package +(mk:load-system :clsql-mysql) ; MySQL interface +(mk:load-system :clsql-postgresql) ; PostgreSQL interface +(mk:load-system :clsql-postgresql-socket) ; Socket PGSQL interface +(mk:load-system :clsql-aodbc) ; Allegro ODBC interface + + + + -- 2.34.1