r2006: debian
[clsql.git] / ChangeLog
1 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
2         * clsql-base.system: Added base package that can be used without
3         high-level SQL commands. Used for adding support for UncommonSQL.
4         * *.system: Reworked logical pathnames to be more consistent with
5         Common Lisp Controller.
6         * debian/*: Completed initial Debian support
7         
8 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
9         * sql/classes.cl:
10         * sql/transactions.cl:
11         Added transaction support. Functions/macros added:
12         with-transaction, commit-transaction, rollback-transaction,
13         add-transaction-commit-hook, add-transaction-rollback-hook
14
15 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
16         * sql/sql.cl:
17         * sql/pool.cl:
18         * sql/functional.cl:
19         Added pool support in connect/disconnect and with-database.
20         Removed with-db-from-pool as with-database can now works with the connections pool
21
22 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
23         * sql/sql.cl:
24         * sql/pool.cl:
25         * sql/classes.cl:
26         * sql/package.cl:
27         Completed connection pool.
28         Added with-db-from-pool macro.
29         
30 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
31         * Multiple files:
32         Added initial support for connection pool
33         * sql/transactions.cl
34         Took transaction code from UncommonSQL and integrated
35         into CLSQL code. See file for disclaimer about why this
36         was added.
37
38 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
39         * interfaces/postgresql/postgresql-sql.cl:
40         Fix keyword typo in database-read-large-object
41         * interfaces/mysql/mysql-loader.cl
42         Fix loading on Win32
43         * test-suite/tester-clsql.cl
44         Fix type coercion of double-float
45         * doc/*
46         Added debian docbook catalog, made it the default
47         
48 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
49         * interface/postgresql/postgresql-api.cl:
50         * interface/postgresql/postgresql-sql.cl:
51         * sql/sql.cl:
52         * sql/db-interface.cl:
53         Added large objects support for postgresql.
54
55 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
56         * src/postgresql-socket/postgresql-socket-api.cl:
57         Fixed find-foreign-function call, eliminated crypt warning
58         * Makefiles:
59         Multiple improvements
60         * sql/usql.cl:
61         Moved functionality from low-level interfaces to this file
62         via generic functions
63         * test-suite/tester.cl:
64         Added test with acl-compat-tester, moved others to old-tests
65         directory.
66         
67 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
68         * src/usql.cl:
69         Reinstated commented out sections
70         * interfaces/postgresql/postgresql-loader.cl:
71         * interfaces/mysql/mysql-loader.cl:
72         Updated find-forieign-library support.
73         * interfaces/postgresql-socket/postgresql-socket-package.cl:
74         Fixed require form for Lispworks (Thanks Marc Battyani!)
75         * interfaces/postgresql-socket/postgresql-socket-api.cl:
76         Fixed eval of def-function for crypt library.
77                 
78 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
79         * Added interface to support USQL high-level rouines
80         
81 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
82         * Separated db-interface and conditions from sql/sql.cl
83         * Improved foreign library loading testing
84         * interfaces/postgresql/postgresql-api.cl
85         Added PQisBusy function
86         * interfaces/clsql-uffi/clsql-uffi.cl
87         Fixed sign error for 64-bit processing
88         
89 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
90         * interfaces/postgresql-socket/postgresql-socket-api.cl:
91         Fixes to read-double-from-socket. Added 64-bit integer support.
92         * test-suite/xptest-clsql.cl
93         Added testint for 64-bit integers
94         * Additons to installation docs
95         
96 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
97         * interfaces/postgresql-socket/postgresql-socket-api.cl:
98         Implemented direct socket reading for field type :double
99         * Added usage information for :types to documentation
100         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
101         atol, atof calls
102         * interfaces/clsql-uffi: Created new directory. Split common
103         interface routines that use UFFI into this package. Required
104         especially to support direct reading of 64-bit integers into
105         bignums and bypassing temporary strings.
106         * test-clsql.cl: Updated to test postgresql-socket's
107         read-double-from-socket function.
108         * test-suite/xptest-clsql.cl
109         Started work on test suite
110
111 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
112         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
113         mysql-fetch-field-direct Got :auto types working
114         * interfaces/postgresql/postgresql-api.cl
115         * interfaces/postgresql-socket/postgresql-socket-api.cl
116         Added pgsql-field-types enum. Got :auto types working.
117         * multiple-files
118         Renamed :field-types to :types.
119         
120 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
121         * Added field-types parameter to query, database-query,
122         database-query-result-set, map-query. Haven't added code
123         to utilize field types, yet.
124         * Changed postgresql-socket result set from cons to a structure
125         * Updated test-clsql.cl to use automated testing with a config
126         file
127         * Changed return types of field accessors from cstring to
128         (* :unsigned-char).  This prepares for being able to use specified
129         type conversions when taking field data into lisp.
130         * Added field-type processing for most interfaces. Not done yet.
131         
132 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
133         * doc/ref.sgml: Updated MAP-QUERY example to use
134         *read-default-float-format* (John Foderaro)
135         * Extensive work to foreign library loaders and .system files to
136         check for successful loading of foreign libraries.
137         * Modified test-clsql.cl to allow more modularity and
138         automated testing in future release.