r1782: Large objects support for Postgresql
[clsql.git] / ChangeLog
1 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2         * interface/postgresql/postgresql-api.cl:
3         * interface/postgresql/postgresql-sql.cl:
4         * sql/sql.cl:
5         * sql/db-interface.cl:
6         Added large objects support for postgresql.
7
8 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
9         * src/postgresql-socket/postgresql-socket-api.cl:
10         Fixed find-foreign-function call, eliminated crypt warning
11         * Makefiles:
12         Multiple improvements
13         * sql/usql.cl:
14         Moved functionality from low-level interfaces to this file
15         via generic functions
16         * test-suite/tester.cl:
17         Added test with acl-compat-tester, moved others to old-tests
18         directory.
19         
20 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
21         * src/usql.cl:
22         Reinstated commented out sections
23         * interfaces/postgresql/postgresql-loader.cl:
24         * interfaces/mysql/mysql-loader.cl:
25         Updated find-forieign-library support.
26         * interfaces/postgresql-socket/postgresql-socket-package.cl:
27         Fixed require form for Lispworks (Thanks Marc Battyani!)
28         * interfaces/postgresql-socket/postgresql-socket-api.cl:
29         Fixed eval of def-function for crypt library.
30                 
31 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
32         * Added interface to support USQL high-level rouines
33         
34 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
35         * Separated db-interface and conditions from sql/sql.cl
36         * Improved foreign library loading testing
37         * interfaces/postgresql/postgresql-api.cl
38         Added PQisBusy function
39         * interfaces/clsql-uffi/clsql-uffi.cl
40         Fixed sign error for 64-bit processing
41         
42 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
43         * interfaces/postgresql-socket/postgresql-socket-api.cl:
44         Fixes to read-double-from-socket. Added 64-bit integer support.
45         * test-suite/xptest-clsql.cl
46         Added testint for 64-bit integers
47         * Additons to installation docs
48         
49 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
50         * interfaces/postgresql-socket/postgresql-socket-api.cl:
51         Implemented direct socket reading for field type :double
52         * Added usage information for :types to documentation
53         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
54         atol, atof calls
55         * interfaces/clsql-uffi: Created new directory. Split common
56         interface routines that use UFFI into this package. Required
57         especially to support direct reading of 64-bit integers into
58         bignums and bypassing temporary strings.
59         * test-clsql.cl: Updated to test postgresql-socket's
60         read-double-from-socket function.
61         * test-suite/xptest-clsql.cl
62         Started work on test suite
63
64 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
65         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
66         mysql-fetch-field-direct Got :auto types working
67         * interfaces/postgresql/postgresql-api.cl
68         * interfaces/postgresql-socket/postgresql-socket-api.cl
69         Added pgsql-field-types enum. Got :auto types working.
70         * multiple-files
71         Renamed :field-types to :types.
72         
73 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
74         * Added field-types parameter to query, database-query,
75         database-query-result-set, map-query. Haven't added code
76         to utilize field types, yet.
77         * Changed postgresql-socket result set from cons to a structure
78         * Updated test-clsql.cl to use automated testing with a config
79         file
80         * Changed return types of field accessors from cstring to
81         (* :unsigned-char).  This prepares for being able to use specified
82         type conversions when taking field data into lisp.
83         * Added field-type processing for most interfaces. Not done yet.
84         
85 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
86         * doc/ref.sgml: Updated MAP-QUERY example to use
87         *read-default-float-format* (John Foderaro)
88         * Extensive work to foreign library loaders and .system files to
89         check for successful loading of foreign libraries.
90         * Modified test-clsql.cl to allow more modularity and
91         automated testing in future release.