summaryrefslogtreecommitdiff
path: root/ADBC/ChangeLog
blob: cce8a5ecfbbbc63242427ae2e1d980b41ca513fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
Mon Jan  4 16:47:56 UTC 2010  James H. Hill  <hillj at cs dot iupui dot edu>

        * adbc/ODBC/ODBC.h:

          Missing file.

Mon Jan  4 16:46:22 UTC 2010  James H. Hill  <hillj at cs dot iupui dot edu>

        * adbc/config.h:

          Missing file.

Mon Jan  4 16:44:26 UTC 2010  James H. Hill  <hillj at cs dot iupui dot edu>

        * default.features.tmpl:

          Fixed errors in the template file.

Mon Jan  4 06:02:42 UTC 2010  James H. Hill  <hillj at cs dot iupui dot edu>

        * adbc/ODBC:
        * adbc/ODBC/ODBC.mpc:
        * adbc/ODBC/ODBC_Connection.h:
        * adbc/ODBC/ODBC_Connection.inl:
        * adbc/ODBC/ODBC_Connection.cpp:
        * adbc/ODBC/ODBC_Env.h:
        * adbc/ODBC/ODBC_Env.inl:
        * adbc/ODBC/ODBC_Env.cpp:
        * adbc/ODBC/ODBC_Exception.h:
        * adbc/ODBC/ODBC_Exception.inl:
        * adbc/ODBC/ODBC_Exception.cpp:
        * adbc/ODBC/ODBC_Parameter.h:
        * adbc/ODBC/ODBC_Parameter.inl:
        * adbc/ODBC/ODBC_Parameter.cpp:
        * adbc/ODBC/ODBC_Parameter_List.h:
        * adbc/ODBC/ODBC_Parameter_List.inl:
        * adbc/ODBC/ODBC_Parameter_List.cpp:
        * adbc/ODBC/ODBC_Query.h:
        * adbc/ODBC/ODBC_Query.inl:
        * adbc/ODBC/ODBC_Query.cpp:
        * adbc/ODBC/ODBC_Record.h:
        * adbc/ODBC/ODBC_Record.inl:
        * adbc/ODBC/ODBC_Record.cpp:
        * adbc/ODBC/ODBC_Types.h:
        * adbc/ODBC/ODBC_Types.inl:
        * adbc/ODBC/ODBC_Types.cpp:
        * adbc/ODBC/ODBC_export.h:
        * examples/ODBC:
        * examples/ODBC/static:
        * examples/ODBC/static/static.mpc:
        * examples/ODBC/static/static.mwc:
        * examples/ODBC/static/static.cpp:

          First implementation of ADBC wrappers for ODBC and a
          simple example illstrating its usage.

Mon Jan  4 05:29:45 UTC 2010  James H. Hill  <hillj at cs dot iupui dot edu>

        * ADBC.mwc:

          Explicitly specified the directories to include in
          the workspace.

        * MPC/config/adbc_sqlite.mpb:

          Added the sqlite3 base project.

        * MPC/config/adbclib.mpb:

          Fixed errors in the base project specification.

        * adbc/ADBC.mpc:
        * adbc/Connection.h:
        * adbc/Exception.h:
        * adbc/Parameter.h:
        * adbc/Parameter.inl:
        * adbc/Parameter_List.h:
        * adbc/Query.h:
        * adbc/SQLite/Types.h:

          Changed all instances of CUTS to ADBC.

        * adbc/Record.h:

          Added a pure virtual reset () method.

        * adbc/SQLite/Parameter.h:
        * adbc/SQLite/Parameter.inl:
        * adbc/SQLite/Parameter.cpp:

          Removed the length (size_t) function since this must be set
          when a parameter is bound.

          Re-implemented the is_null () so that is not implemented in
          terms of its base class.

        * adbc/SQLite/Query.h:
        * adbc/SQLite/Query.inl:
        * adbc/SQLite/Query.cpp:
        * adbc/SQLite/Record.h:
        * adbc/SQLite/Record.inl:
        * adbc/SQLite/Record.cpp:

          Improved the implementation of the Record class so that its
          semantics are more in line with its specification. This also
          simplified the execute* () methods on the Query class since
          the Record handles reseting the cursor for each execution of
          a statement.

        * default.features.tmpl:

          Template of all possible features for MPC.

        * examples/SQLite/simple/simple.cpp:

          Fixed build errors in the example.

Sat Jan  2 16:23:29 UTC 2010  James H. Hill  <hillj at cs dot iupui dot edu>

        * adbc/Query.h:
        * adbc/Record.h:
        * adbc/SQLite/Query.h:
        * adbc/SQLite/Query.cpp:
        * adbc/SQLite/Record.h:
        * adbc/SQLite/Record.inl:

          Moved the count () method from the Record class to the
          Query class since it has no meaning on the SELECT SQL
          statement, which results in a Record object for iteration.

Sat Jan  2 02:23:02 UTC 2010  James H. Hill  <hillj at cs dot iupui dot edu>

        * adbc/SQLite/Query.h:
        * adbc/SQLite/Query.inl:
        * adbc/SQLite/Query.cpp:
        * adbc/SQLite/Record.h:
        * adbc/SQLite/Record.inl:

          execute () no longer allocates a record for each query
          executed. Instead, it return an embedded record, which
          should not be deallocated () by the client.

        * examples/SQLite/dynamic/dynamic.cpp:
        * examples/SQLite/simple/simple.cpp:

          Updated the examples.

Wed Dec 30 22:54:02 UTC 2009  James H. Hill  <hillj@dre.vanderbilt.edu>

        * adbc/SQLite/Query.h:
        * adbc/SQLite/Query.inl:
        * adbc/SQLite/Query.cpp:

          Improved the inline implementation.

        * examples/SQLite/dynamic:
        * examples/SQLite/dynamic/dynamic.mpc:
        * examples/SQLite/dynamic/dynamic.mwc:
        * examples/SQLite/dynamic/dynamic.cpp:

          Example illustrating dynamic allocation of a query.

        * examples/SQLite/simple/simple.cpp:

          This example no longer dynamically allocates the query.

Wed Dec 30 22:26:58 UTC 2009  James H. Hill  <hillj@dre.vanderbilt.edu>

        * ADBC.mwc:
        * AUTHORS:
        * COPYING:
        * MPC:
        * MPC/config:
        * MPC/config/adbc_defaults.mpb:
        * MPC/config/adbc_exe.mpb:
        * MPC/config/adbc_lib.mpb:
        * MPC/config/adbc_sqlite.mpb:
        * MPC/config/adbclib.mpb:
        * NEWS:
        * PROBLEM-REPORT-FORM:
        * THANKS:
        * VERSION:
        * adbc:
        * adbc/ADBC.mpc:
        * adbc/ADBC_export.h:
        * adbc/Connection.h:
        * adbc/Connection.inl:
        * adbc/Connection.cpp:
        * adbc/Exception.h:
        * adbc/Exception.inl:
        * adbc/Exception.cpp:
        * adbc/Parameter.h:
        * adbc/Parameter.inl:
        * adbc/Parameter.cpp:
        * adbc/Parameter_List.h:
        * adbc/Parameter_List.inl:
        * adbc/Parameter_List.cpp:
        * adbc/Query.h:
        * adbc/Query.inl:
        * adbc/Query.cpp:
        * adbc/Record.h:
        * adbc/Record.inl:
        * adbc/Record.cpp:
        * adbc/SQLite:
        * adbc/SQLite/Connection.h:
        * adbc/SQLite/Connection.inl:
        * adbc/SQLite/Connection.cpp:
        * adbc/SQLite/Exception.h:
        * adbc/SQLite/Exception.inl:
        * adbc/SQLite/Exception.cpp:
        * adbc/SQLite/Parameter.h:
        * adbc/SQLite/Parameter.inl:
        * adbc/SQLite/Parameter.cpp:
        * adbc/SQLite/Parameter_List.h:
        * adbc/SQLite/Parameter_List.inl:
        * adbc/SQLite/Parameter_List.cpp:
        * adbc/SQLite/Query.h:
        * adbc/SQLite/Query.inl:
        * adbc/SQLite/Query.cpp:
        * adbc/SQLite/Record.h:
        * adbc/SQLite/Record.inl:
        * adbc/SQLite/Record.cpp:
        * adbc/SQLite/SQLite.mpc:
        * adbc/SQLite/SQLite_export.h:
        * adbc/SQLite/Types.h:
        * adbc/SQLite/Types.inl:
        * adbc/SQLite/Types.cpp:
        * adbc/Types.h:
        * adbc/Types.inl:
        * adbc/Types.cpp:
        * adbc/destroy_t.h:
        * bin:
        * docs:
        * lib:
        * tests:

          Checkpointing current implementation of ADBC. Right now, it
          supports only SQLite3. The ODBC implementation still needs
          to be ported from the CUTS distribution.

        * examples:
        * examples/SQLite:
        * examples/SQLite/simple:
        * examples/SQLite/simple/simple.mpc:
        * examples/SQLite/simple/simple.mwc:
        * examples/SQLite/simple/simple.cpp:

          Very simple example illustrating how to use the SQLite3
          implementation.