X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2Fintro.xml;h=3711db51130f7a23438e45dd2bf0b0cbcb78c343;hb=e622ee6f4bf2b9fe81af59d566e651c983a4833b;hp=a1457a694d2bf4de262f1e5e8830a02b37a98daa;hpb=4acd394aa304abb683270f8ce6979e7efc423e23;p=clsql.git diff --git a/doc/intro.xml b/doc/intro.xml index a1457a6..3711db5 100644 --- a/doc/intro.xml +++ b/doc/intro.xml @@ -42,7 +42,7 @@ Optimized loading of integer and floating-point fields. - Additional database backends: &acl; ODBC and &sqlite;. + Additional database backends: &odbc;, &aodbc;, and &sqlite;. A compatibility layer for &cmucl; specific code. @@ -106,12 +106,18 @@ implementations of &uffi;. The following implementations are supported: - &acl; v6.2 on Debian Linux, FreeBSD 4.5, and Microsoft Windows XP. - &lw; v4.3 on Debian Linux and Microsoft Windows XP. - &cmucl; 18e on Debian Linux, FreeBSD 4.5, and Solaris 2.8. - &sbcl; 0.8.5 on Debian Linux. + &acl; v6.2 and 7.0b on Debian Linux x86 & + x86_64 & PowerPC, FreeBSD 4.5, and Microsoft Windows + XP. + &lw; v4.3 on Debian Linux and Microsoft + Windows XP. + &cmucl; 18e on Debian Linux, FreeBSD 4.5, and + Solaris 2.8. + &sbcl; 0.8.5 on Debian + Linux. &scl; 1.1.1 on Debian Linux. - &openmcl; 0.14 on Debian Linux PowerPC. + &openmcl; 0.14 on Debian Linux + PowerPC. @@ -121,12 +127,12 @@ Currently, &clsql; supports the following databases: - &mysql; v3.23.51 and v4.0.15. - &postgresql; v7.2 with both direct API and TCP + &mysql; v3.23.51 and v4.0.18. + &postgresql; v7.4 with both direct API and TCP socket connections. &sqlite;. - Allegro's ODBC interface (&aodbc;) using iODBC - ODBC manager. + Direct &odbc; interface. + Allegro's DB interface (&aodbc;). @@ -231,12 +237,13 @@ (push #P"/usr/share/lisp/clsql/" asdf:*central-registry*) -(asdf:operate 'asdf:load-op 'clsql-base) ; base CLSQL package +(asdf:operate 'asdf:load-op 'clsql) ; main CLSQL package (asdf:operate 'asdf:load-op 'clsql-mysql) ; MySQL interface (asdf:operate 'asdf:load-op 'clsql-postgresql) ; PostgreSQL interface (asdf:operate 'asdf:load-op 'clsql-postgresql-socket) ; Socket PGSQL interface +(asdf:operate 'asdf:load-op 'clsql-odbc) ; ODBC interface +(asdf:operate 'asdf:load-op 'clsql-sqlite) ; SQLite interface (asdf:operate 'asdf:load-op 'clsql-aodbc) ; Allegro ODBC interface -(asdf:operate 'asdf:load-op 'clsql) ; main CLSQL package @@ -248,9 +255,9 @@ configuration file named .clsql-test.config must be created in your home directory. There are instructures on the format of - that file in the tests/tests.lisp file in - the &clsql; source directory. After creating that file, you - can run the test suite with &asdf;: + that file in the tests/README. After + creating .clsql-test.config, you can run + the test suite with &asdf;: (asdf:operate 'asdf:test-op 'clsql)