dbi 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +3694 -0
- data/LICENSE +25 -0
- data/README +271 -0
- data/bin/dbi +518 -0
- data/build/Rakefile.dbi.rb +57 -0
- data/examples/test1.pl +39 -0
- data/examples/test1.rb +20 -0
- data/examples/xmltest.rb +8 -0
- data/lib/dbi.rb +323 -0
- data/lib/dbi/base_classes.rb +12 -0
- data/lib/dbi/base_classes/database.rb +135 -0
- data/lib/dbi/base_classes/driver.rb +47 -0
- data/lib/dbi/base_classes/statement.rb +167 -0
- data/lib/dbi/binary.rb +25 -0
- data/lib/dbi/columninfo.rb +106 -0
- data/lib/dbi/exceptions.rb +65 -0
- data/lib/dbi/handles.rb +49 -0
- data/lib/dbi/handles/database.rb +211 -0
- data/lib/dbi/handles/driver.rb +60 -0
- data/lib/dbi/handles/statement.rb +375 -0
- data/lib/dbi/row.rb +249 -0
- data/lib/dbi/sql.rb +23 -0
- data/lib/dbi/sql/preparedstatement.rb +115 -0
- data/lib/dbi/sql_type_constants.rb +75 -0
- data/lib/dbi/trace.rb +91 -0
- data/lib/dbi/types.rb +158 -0
- data/lib/dbi/typeutil.rb +108 -0
- data/lib/dbi/utils.rb +60 -0
- data/lib/dbi/utils/date.rb +59 -0
- data/lib/dbi/utils/tableformatter.rb +112 -0
- data/lib/dbi/utils/time.rb +52 -0
- data/lib/dbi/utils/timestamp.rb +96 -0
- data/lib/dbi/utils/xmlformatter.rb +73 -0
- data/test/dbi/tc_columninfo.rb +94 -0
- data/test/dbi/tc_date.rb +88 -0
- data/test/dbi/tc_dbi.rb +178 -0
- data/test/dbi/tc_row.rb +256 -0
- data/test/dbi/tc_sqlbind.rb +168 -0
- data/test/dbi/tc_statementhandle.rb +16 -0
- data/test/dbi/tc_time.rb +77 -0
- data/test/dbi/tc_timestamp.rb +142 -0
- data/test/dbi/tc_types.rb +220 -0
- data/test/dbi/trace.rb +26 -0
- data/test/ts_dbi.rb +15 -0
- metadata +108 -0
data/ChangeLog
ADDED
@@ -0,0 +1,3694 @@
|
|
1
|
+
== 0.4.0 - 08/23/2008
|
2
|
+
|
3
|
+
=== Summary
|
4
|
+
|
5
|
+
* Type conversion is now universally managed amongst DBDs. Please see
|
6
|
+
DBI::Type and DBI::TypeUtil and the DBI::StatementHandle#bind_coltype method.
|
7
|
+
* Rubygems support! All DBDs and DBI will now install and appropriately fetch
|
8
|
+
prerequisites (when possible) via the 'gem' command and other Rubygems
|
9
|
+
interfaces.
|
10
|
+
* Lots of code has been cleaned up and the filesystem has been significantly
|
11
|
+
reorganized.
|
12
|
+
* Many bugfixes due to inconsistencies between DBDs.
|
13
|
+
* DBDs that were deprecated in 0.2.0 have been removed, as have the Proxy and
|
14
|
+
Trace libraries (they didn't work anyways.) Proxy and Trace will be revisited
|
15
|
+
in the future.
|
16
|
+
* Several calls and classes have been deprecated in favor of native
|
17
|
+
ruby replacements.
|
18
|
+
* Tons of new documentation for both DBI users and DBD developers alike.
|
19
|
+
|
20
|
+
commit:: c717f76f0f9e3645d8a0e3a4d4daa6e0f2380273
|
21
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
22
|
+
Date:: Sat Aug 23 01:48:08 2008 -0700
|
23
|
+
|
24
|
+
* Fixed test1.rb to include StatementHandle#finish.
|
25
|
+
|
26
|
+
commit:: 0f1ef6e5e8babb9741b8300ed63d826eeeb6b98f
|
27
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
28
|
+
Date:: Sat Aug 23 00:59:46 2008 -0700
|
29
|
+
|
30
|
+
* Made the examples a little more in-your-face in the README.
|
31
|
+
|
32
|
+
commit:: 10c81ba90ff766b0c28288ba065472d7ab2497d2
|
33
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
34
|
+
Date:: Tue Aug 19 13:29:13 2008 -0700
|
35
|
+
|
36
|
+
* Changes to DBD version handling: DBI::VERSION is now used for comparison, and the comparison actually works.
|
37
|
+
|
38
|
+
commit:: 10272829eb255580a40967458f0490649ea0584a
|
39
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
40
|
+
Date:: Tue Aug 19 12:52:37 2008 -0700
|
41
|
+
|
42
|
+
* Made native binding toggleable
|
43
|
+
|
44
|
+
commit:: 0fba5e6125a48b4c38fe95818e96092ff2d46e0c
|
45
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
46
|
+
Date:: Tue Aug 19 11:40:46 2008 -0700
|
47
|
+
|
48
|
+
* Fix for new pg driver
|
49
|
+
|
50
|
+
commit:: c4692c89ab6c392a9da0a82f4e43abf01a009bbc
|
51
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
52
|
+
Date:: Mon Aug 18 04:13:28 2008 -0700
|
53
|
+
|
54
|
+
* test to prove #20489 wrong
|
55
|
+
|
56
|
+
commit:: af530d0103a80c16f305ea0e5fb6db1263119b50
|
57
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
58
|
+
Date:: Fri Aug 15 11:51:48 2008 -0700
|
59
|
+
|
60
|
+
* "standard" pl/sql replacement for plpgsql function used for testing the last bug. not all postgres installations have plpgsql and there were other issues.
|
61
|
+
|
62
|
+
commit:: 04c3371efb7fe37b5dbad88efd069e14287e9654
|
63
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
64
|
+
Date:: Fri Aug 15 11:06:39 2008 -0700
|
65
|
+
|
66
|
+
* 0.4.0 fix for #21567, part 2.
|
67
|
+
|
68
|
+
commit:: 2782db825e809bb0ebd93ac39d4a9318c3c76058
|
69
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
70
|
+
Date:: Fri Aug 15 08:38:34 2008 -0700
|
71
|
+
|
72
|
+
* DBD::Pg documentation.
|
73
|
+
|
74
|
+
commit:: 53d08b7b87b20b36bc0088498ec9aacc43e12def
|
75
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
76
|
+
Date:: Fri Aug 15 07:32:09 2008 -0700
|
77
|
+
|
78
|
+
* DBD::ODBC documentation
|
79
|
+
|
80
|
+
commit:: 24c99b9296c9175082f67266327a6178442b0e69
|
81
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
82
|
+
Date:: Fri Aug 15 07:14:35 2008 -0700
|
83
|
+
|
84
|
+
* A couple of touchups on the SQLite3 documentation
|
85
|
+
|
86
|
+
commit:: dfe4a9faa80cb21d57d1535e41697fefd2ff717b
|
87
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
88
|
+
Date:: Thu Aug 14 13:06:46 2008 -0700
|
89
|
+
|
90
|
+
* Fix for #21567, modified for 0.4.0
|
91
|
+
* As a result, removed unnecessary fill_array method in Tuples class.
|
92
|
+
|
93
|
+
commit:: 00fac0444f1e37404b1540e6ca7e8837e3627f63
|
94
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
95
|
+
Date:: Wed Aug 13 06:13:40 2008 -0700
|
96
|
+
|
97
|
+
* DBD::SQLite3
|
98
|
+
|
99
|
+
commit:: 7fd22432756e088090aa8411063cbdf18c968ebe
|
100
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
101
|
+
Date:: Wed Aug 13 05:30:23 2008 -0700
|
102
|
+
|
103
|
+
* DBD::SQLite docs
|
104
|
+
|
105
|
+
commit:: 1febe97a63a0da70869c46d6ec608e73ba66b310
|
106
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
107
|
+
Date:: Wed Aug 13 03:47:39 2008 -0700
|
108
|
+
|
109
|
+
* Mysql::Statement docs
|
110
|
+
* Fixed some formatting issues related to bullet lists and ::
|
111
|
+
|
112
|
+
commit:: 9c8df9cbeb61a9520671837ac66d8ad0c8422c9b
|
113
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
114
|
+
Date:: Wed Aug 13 02:34:19 2008 -0700
|
115
|
+
|
116
|
+
* Mysql::Driver
|
117
|
+
|
118
|
+
commit:: e1409c0fb791ddeca483c95aa32cf9e9f2a8c3c3
|
119
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
120
|
+
Date:: Wed Aug 13 02:26:51 2008 -0700
|
121
|
+
|
122
|
+
* First stab at MySQL Docs
|
123
|
+
* Base Namespace and Database documented
|
124
|
+
|
125
|
+
commit:: 2646f291c2fb48ffdbe6b3c684a92fd89e8ddd9c
|
126
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
127
|
+
Date:: Tue Aug 12 14:28:50 2008 -0400
|
128
|
+
|
129
|
+
Added English comment to gem installation lines.
|
130
|
+
|
131
|
+
commit:: 7f4a757dc2bed50ebdaf6993062f4688a6d9b7d0
|
132
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
133
|
+
Date:: Tue Aug 12 14:26:09 2008 -0400
|
134
|
+
|
135
|
+
English edits on Exceptions section of DBI_SPEC.
|
136
|
+
|
137
|
+
commit:: 11b8e19fb8a93fe2c9ad4691862d6e577a4cebcb
|
138
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
139
|
+
Date:: Tue Aug 12 14:18:25 2008 -0400
|
140
|
+
|
141
|
+
Added "DBI::" namespace to titles for clarity.
|
142
|
+
|
143
|
+
commit:: c83b56ee84115247d64f96fb921d04d289c8785a
|
144
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
145
|
+
Date:: Tue Aug 12 14:15:07 2008 -0400
|
146
|
+
|
147
|
+
English edits in Classes section of DBI_SPEC.
|
148
|
+
|
149
|
+
commit:: fdf38829a89a885a83d7d6a4625bff35e891d717
|
150
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
151
|
+
Date:: Tue Aug 12 14:12:08 2008 -0400
|
152
|
+
|
153
|
+
Changed UPPERCASE titles to Title Case.
|
154
|
+
|
155
|
+
commit:: e9a22e7e0c38a0d2c5bca233b059b5e7a3e65a1c
|
156
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
157
|
+
Date:: Tue Aug 12 14:11:48 2008 -0400
|
158
|
+
|
159
|
+
English edits on Design section of DBI_SPEC.
|
160
|
+
|
161
|
+
commit:: 4b3d7bf730182cb320f7f76520586a79af53a6e7
|
162
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
163
|
+
Date:: Tue Aug 12 14:03:02 2008 -0400
|
164
|
+
|
165
|
+
English edits on DBI_SPEC foreword.
|
166
|
+
|
167
|
+
commit:: a1a6fba702e308562b8f13e9d6a8373332f43961
|
168
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
169
|
+
Date:: Tue Aug 12 13:44:14 2008 -0400
|
170
|
+
|
171
|
+
Adjusted kitebird link title.
|
172
|
+
|
173
|
+
commit:: 49ed014939701f4bdce9c359a46160b93c3e18d9
|
174
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
175
|
+
Date:: Tue Aug 12 13:44:05 2008 -0400
|
176
|
+
|
177
|
+
Added URI to github repo.
|
178
|
+
|
179
|
+
commit:: cd58249dec1d26771d97c612020bbdf0f53be4c7
|
180
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
181
|
+
Date:: Tue Aug 12 13:41:25 2008 -0400
|
182
|
+
|
183
|
+
Changed most indentation in README from 3 to 4 spaces.
|
184
|
+
|
185
|
+
commit:: e9b3e43176b39207562216cfde6d233943d7f95b
|
186
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
187
|
+
Date:: Tue Aug 12 13:41:04 2008 -0400
|
188
|
+
|
189
|
+
English edit in README.
|
190
|
+
|
191
|
+
commit:: 98511628a6316be2506cb3d61ec214b398032220
|
192
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
193
|
+
Date:: Tue Aug 12 13:33:48 2008 -0400
|
194
|
+
|
195
|
+
Added test/sql.log to .gitignore.
|
196
|
+
|
197
|
+
commit:: 64d66c276e633496e1241f9fc5c0bd8a53c73496
|
198
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
199
|
+
Date:: Tue Aug 12 13:32:16 2008 -0400
|
200
|
+
|
201
|
+
Added .gitignore. Currently only ignoring rdocs.
|
202
|
+
|
203
|
+
commit:: 89ed83c8ff1a61b46aaaa4765948fdffa9155efa
|
204
|
+
Author:: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
205
|
+
Date:: Mon Aug 11 23:55:26 2008 -0400
|
206
|
+
|
207
|
+
Minor English change in README.
|
208
|
+
|
209
|
+
commit:: 8e64908cc68797a3022cea8a281645c7c7852e55
|
210
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
211
|
+
Date:: Sat Aug 9 22:51:49 2008 -0700
|
212
|
+
|
213
|
+
* New DBD_SPEC. Not sure if I like it yet.
|
214
|
+
|
215
|
+
commit:: cdba7c7f461734e860b7f7ad140679418274022a
|
216
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
217
|
+
Date:: Sat Aug 9 05:49:33 2008 -0700
|
218
|
+
|
219
|
+
* Some cleanup on LICENSE and README
|
220
|
+
|
221
|
+
commit:: c0825d7056fcb0c562d2481e5215eac05478419c
|
222
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
223
|
+
Date:: Sat Aug 9 05:41:52 2008 -0700
|
224
|
+
|
225
|
+
* DBI::Utils namespace complete
|
226
|
+
|
227
|
+
commit:: 308533d39dd35a8f350d833b6f17fb84224cd49c
|
228
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
229
|
+
Date:: Sat Aug 9 05:20:30 2008 -0700
|
230
|
+
|
231
|
+
* DBI::Type, DBI::Type::*, DBI::TypeUtil
|
232
|
+
|
233
|
+
commit:: 16cadf97edb581b1ba09bd73dcf03682e2e220e2
|
234
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
235
|
+
Date:: Sat Aug 9 04:36:41 2008 -0700
|
236
|
+
|
237
|
+
* DBI::Row, DBI::SQL, DBI::SQL::PreparedStatement
|
238
|
+
* Some start in on DBI::Type
|
239
|
+
|
240
|
+
commit:: 0e67d266f30284418c8cf3bc6725a67991da7049
|
241
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
242
|
+
Date:: Sat Aug 9 04:17:06 2008 -0700
|
243
|
+
|
244
|
+
* StatementHandle
|
245
|
+
|
246
|
+
commit:: 1b3fd5b85a419742216e6e1644e0add6cc7d6377
|
247
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
248
|
+
Date:: Sat Aug 9 02:55:24 2008 -0700
|
249
|
+
|
250
|
+
* DBI::Binary, DBI::ColumnInfo, All Handle classes except StatementHandle.
|
251
|
+
|
252
|
+
commit:: bd90081b59da321d41ca5abb4704f74b24a67f3c
|
253
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
254
|
+
Date:: Sat Aug 9 02:00:30 2008 -0700
|
255
|
+
|
256
|
+
* DBI, BaseDatabase, BaseStatement, BaseDriver documented.
|
257
|
+
* Some rdoc task tweaks.
|
258
|
+
|
259
|
+
commit:: f69083b1e578c234614e79b954ed2cd8120c91bc
|
260
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
261
|
+
Date:: Fri Aug 8 03:57:38 2008 -0700
|
262
|
+
|
263
|
+
* Revised DBI SPEC
|
264
|
+
|
265
|
+
commit:: fb4248efff21b4b929c179be2407750d88c29de7
|
266
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
267
|
+
Date:: Fri Aug 8 03:11:42 2008 -0700
|
268
|
+
|
269
|
+
* README
|
270
|
+
|
271
|
+
commit:: de1fe2b859109fe7be7c414917b77cbb93a83555
|
272
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
273
|
+
Date:: Fri Aug 8 03:00:25 2008 -0700
|
274
|
+
|
275
|
+
* Rendered trace module impotent; this is going to have to be addressed in 0.6.0
|
276
|
+
|
277
|
+
commit:: f76bd745213c56394d1529748d6c5c479b561c25
|
278
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
279
|
+
Date:: Fri Aug 8 02:08:35 2008 -0700
|
280
|
+
|
281
|
+
* bind_coltype implementation
|
282
|
+
* DBI 0.4.0 is feature-complete
|
283
|
+
|
284
|
+
commit:: 752532a90082986f21a3feec2c29951bdafa293c
|
285
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
286
|
+
Date:: Thu Jul 31 02:30:16 2008 -0700
|
287
|
+
|
288
|
+
* You can now turn off type management by twiddling the convert_types bit on DBI, and the Driver, Database, and Statement handles.
|
289
|
+
* These changes will propogate upwards as new items are constructed
|
290
|
+
* This is tested in test_types
|
291
|
+
* Lots, lots, lots of fixes were made so this works properly
|
292
|
+
|
293
|
+
commit:: 047576e57fcc5c2043115c7fe8df7c2ed963020b
|
294
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
295
|
+
Date:: Thu Jul 31 01:02:22 2008 -0700
|
296
|
+
|
297
|
+
* Fixed another regression I missed earlier
|
298
|
+
* DBI::Row did shallow copies of the delegated array, which was causing problems with Pg arrays. Using a marshal dump/load method now, hope it's not too slow.
|
299
|
+
|
300
|
+
commit:: 5a985a202efc3c0bc7dd7ef19ffe93a1ddd15b6d
|
301
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
302
|
+
Date:: Wed Jul 30 23:55:04 2008 -0700
|
303
|
+
|
304
|
+
* Found a pretty ugly bug in DBI::Row, which caused a lot of regressions that should have happened when I started the type changes.
|
305
|
+
* Started to add some new tests
|
306
|
+
|
307
|
+
commit:: fb3112aa212114c28fe1084030f470474219bc7c
|
308
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
309
|
+
Date:: Wed Jul 30 23:39:19 2008 -0700
|
310
|
+
|
311
|
+
* DBI::Row changes for convert_types; no tests yet
|
312
|
+
|
313
|
+
commit:: 3299bcb6493cd46959641dd129be5f6d58ee01f2
|
314
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
315
|
+
Date:: Wed Jul 30 23:34:23 2008 -0700
|
316
|
+
|
317
|
+
* Added convert_types to DBI, this is propogated up through the various handles.
|
318
|
+
* Reformatted lib/dbi.rb
|
319
|
+
|
320
|
+
commit:: 4d0f31673a840528b527b27719652bbf0a6ab8e2
|
321
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
322
|
+
Date:: Wed Jul 30 23:28:52 2008 -0700
|
323
|
+
|
324
|
+
* Ok, convert_types works through the whole handler chain now (still untested)
|
325
|
+
|
326
|
+
commit:: 45091467537e68cffd03c5be56a58d5b1f32b064
|
327
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
328
|
+
Date:: Wed Jul 30 23:18:16 2008 -0700
|
329
|
+
|
330
|
+
* All handles now have a "convert_types" attribute
|
331
|
+
* DatabaseHandles now use the "convert_types" attribute to determine if they are to convert types :)
|
332
|
+
* the columns() method is now a required method for Database classes. Will raise NotSupportedError otherwise.
|
333
|
+
|
334
|
+
commit:: 74ededbef484b7d4bfe8d16c34c0dc418b89a62a
|
335
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
336
|
+
Date:: Wed Jul 30 22:59:25 2008 -0700
|
337
|
+
|
338
|
+
* Converted all tests running w/ system() previously to now use rake's ruby(). This'll ensure the right ruby gets executed.
|
339
|
+
|
340
|
+
commit:: c04f2e9f2328f2def41ee77925660fe7a78748e2
|
341
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
342
|
+
Date:: Wed Jul 30 22:58:10 2008 -0700
|
343
|
+
|
344
|
+
* Rakefile changes:
|
345
|
+
* test_dbi and test_dbd targets added to DBI rakefile. These test the DBD and DBI individually.
|
346
|
+
* test target in DBI rakefile now depends on the above targets
|
347
|
+
|
348
|
+
commit:: 2cb5402815de46f94ff72ea9a34ffe18d27061aa
|
349
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
350
|
+
Date:: Tue Jul 29 22:35:06 2008 -0700
|
351
|
+
|
352
|
+
* Removed a lot of obsolete files in the build/ directory
|
353
|
+
|
354
|
+
commit:: 2d0f6b402449912f11999e89877b250e92b5bcb1
|
355
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
356
|
+
Date:: Tue Jul 29 20:54:16 2008 -0700
|
357
|
+
|
358
|
+
* Gem prereqs for DBDs
|
359
|
+
|
360
|
+
commit:: 9824637cdd2563627a95386fb05d4e1967dd65e1
|
361
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
362
|
+
Date:: Tue Jul 29 20:01:14 2008 -0700
|
363
|
+
|
364
|
+
* ODBC fixes
|
365
|
+
|
366
|
+
commit:: 0fb69f4f7af40df665afd29db13be7db8bbabced
|
367
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
368
|
+
Date:: Sun Jul 27 21:25:57 2008 -0700
|
369
|
+
|
370
|
+
* Fix for #5336
|
371
|
+
|
372
|
+
commit:: d993fd1b78981ee26d2d91218646f4fde500166e
|
373
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
374
|
+
Date:: Sun Jul 27 20:38:26 2008 -0700
|
375
|
+
|
376
|
+
* Q&D fix for null result set -> tableformatter - fix for #4944
|
377
|
+
|
378
|
+
commit:: 09fc86af845dc5bb8dbf2281c5b97b4716fe842f
|
379
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
380
|
+
Date:: Sun Jul 27 20:17:01 2008 -0700
|
381
|
+
|
382
|
+
* Finally fixed files left around from the postgresql/test_blob.rb test. Thanks again Mike Pomraning.
|
383
|
+
|
384
|
+
commit:: a7519cbf170283b5e6f565d05982e0f753b572d1
|
385
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
386
|
+
Date:: Sun Jul 27 20:09:06 2008 -0700
|
387
|
+
|
388
|
+
* Pg: integrated Mike Pomraning's patches from #18925:
|
389
|
+
* async support
|
390
|
+
* Native binds (yay)
|
391
|
+
* TypeUtil: conversion cascade changes
|
392
|
+
* Instead of checking if our object changed during a conversion attempt and
|
393
|
+
cascading down if it didn't, we now have a cascade flag (true or false) which
|
394
|
+
is used. This allows the driver to be more explicit.
|
395
|
+
* Many, many, many of these changes were the result of this modification.
|
396
|
+
|
397
|
+
commit:: 062447a9e228d66cdaf44ab1cdb73c2e09139149
|
398
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
399
|
+
Date:: Sat Jul 26 17:24:49 2008 -0700
|
400
|
+
|
401
|
+
* Fix for Pg array parser and varchar elements (regression from \ fix in earlier commit)
|
402
|
+
|
403
|
+
commit:: 7511f9b9794a9504f314159a073f6e3885a5aa83
|
404
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
405
|
+
Date:: Sat Jul 26 17:08:36 2008 -0700
|
406
|
+
|
407
|
+
* Mysql couldn't store blobs properly (the blob test wasn't running.. whoops)
|
408
|
+
* All strings were not properly escaping \ characters.
|
409
|
+
|
410
|
+
commit:: 4426ac9a65fd05d84a09354e2a0e06f5331894d5
|
411
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
412
|
+
Date:: Sat Jul 26 16:53:43 2008 -0700
|
413
|
+
|
414
|
+
* Some statement tests for ODBC
|
415
|
+
|
416
|
+
commit:: afdda9620818e270666e5534851291db16122a87
|
417
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
418
|
+
Date:: Sat Jul 26 16:46:57 2008 -0700
|
419
|
+
|
420
|
+
* ODBC working w/ general DBD tests
|
421
|
+
* Reformatted lib/dbi/row.rb
|
422
|
+
|
423
|
+
commit:: 5f5771a6bc69746f12e61622ee6b3f347253f520
|
424
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
425
|
+
Date:: Sat Jul 26 13:50:35 2008 -0700
|
426
|
+
|
427
|
+
* Updated test/dbi/tc_dbi.rb reflecting Proxy.rb change
|
428
|
+
|
429
|
+
commit:: 2e3d8a1d2aa1c94b4821ac1b3273dfbb9037db5c
|
430
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
431
|
+
Date:: Sat Jul 26 13:44:53 2008 -0700
|
432
|
+
|
433
|
+
* Proxy files are a goner; we'll resurrect them in 0.6.0
|
434
|
+
|
435
|
+
commit:: 4b447421ce0b4efdd93e49363db5c3389a445d1c
|
436
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
437
|
+
Date:: Sat Jul 26 13:41:40 2008 -0700
|
438
|
+
|
439
|
+
* TODO updates
|
440
|
+
* bin/dbd_proxy never worked, it's now removed from release... hoping to touch on it in 0.6.0
|
441
|
+
* Removed un-used build/Rakefile.dbd.rb
|
442
|
+
* Updated Rakefile.dbi.rb gemspec to contain 'dbi' as an executable
|
443
|
+
|
444
|
+
commit:: 2f94d9439b06978cfa4f32b6050d3fa9c75db25e
|
445
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
446
|
+
Date:: Sat Jul 26 13:20:09 2008 -0700
|
447
|
+
|
448
|
+
* Lots of fixes to bin/dbi
|
449
|
+
|
450
|
+
commit:: 2e9471d1b688aaaa6e2d4f493b0c267924af930f
|
451
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
452
|
+
Date:: Sat Jul 26 12:33:45 2008 -0700
|
453
|
+
|
454
|
+
* A few fixes to tableformatter and bin/dbi
|
455
|
+
|
456
|
+
commit:: 68a62555c54897dd7d3ce2eef607739aa076f667
|
457
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
458
|
+
Date:: Sat Jul 26 00:41:56 2008 -0700
|
459
|
+
|
460
|
+
* Fix for the DBI test that tests the version
|
461
|
+
|
462
|
+
commit:: 76fbf73f56bb1f4c008299eab1c23d80f337bfa7
|
463
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
464
|
+
Date:: Sat Jul 26 00:40:31 2008 -0700
|
465
|
+
|
466
|
+
* Bumped version on DBI so gems will still work and have proper deps
|
467
|
+
|
468
|
+
commit:: d67ba5f69c8d47aa4dd007086f879ef5a685f6b1
|
469
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
470
|
+
Date:: Sat Jul 26 00:37:20 2008 -0700
|
471
|
+
|
472
|
+
* Added dependencies for DBI
|
473
|
+
* Played around with lib/dbi/trace.rb; it's not going to stay. updated TODO
|
474
|
+
|
475
|
+
commit:: 0c1c2109f2599b96d22f2df2cb0accfb61d7a457
|
476
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
477
|
+
Date:: Fri Jul 25 20:30:46 2008 -0700
|
478
|
+
|
479
|
+
* DBI and DBD Rakefiles both work as expected:
|
480
|
+
* DBI Rakefile includes the right files in DBI and DBD packages
|
481
|
+
* DBD .tar.gz and .zip files include all the tools to make gems, test, and repackage
|
482
|
+
* DBDs now attempt to require DBI, this is to ensure that testing works without DBI in the package.
|
483
|
+
|
484
|
+
commit:: e1eec1157fc79426d5d00ec6582bc16029a140ae
|
485
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
486
|
+
Date:: Thu Jul 24 18:13:44 2008 -0700
|
487
|
+
|
488
|
+
* new required DBD constant: DESCRIPTION, which describes the DBD's purpose.
|
489
|
+
* Rakefile.dbi.rb is properly generating packages again
|
490
|
+
|
491
|
+
commit:: 1136a81721598dee5812a9723690d0dfaa7b4212
|
492
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
493
|
+
Date:: Thu Jul 24 17:55:20 2008 -0700
|
494
|
+
|
495
|
+
* Stage 2 of Rakefile changes
|
496
|
+
|
497
|
+
commit:: 39c0cbb9e8a6c01653fac9c93e0ff188c2eb49dd
|
498
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
499
|
+
Date:: Thu Jul 24 17:25:13 2008 -0700
|
500
|
+
|
501
|
+
* Moved /Rakefile -> build/Rakefile.dbi - alterations will come in next commit
|
502
|
+
|
503
|
+
commit:: 82a6d26d3e054239c72d528bab15c933537ec6f1
|
504
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
505
|
+
Date:: Thu Jul 24 09:01:18 2008 -0700
|
506
|
+
|
507
|
+
* Created Rakefile.dbd (which does not work yet) for using with DBD packages
|
508
|
+
* Removed the DOC_FILES addition in most package specs, this was already being included elsewhere
|
509
|
+
|
510
|
+
commit:: 904ab1d452100b7c77e1b83dd679a83cb7b8630f
|
511
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
512
|
+
Date:: Thu Jul 24 08:16:26 2008 -0700
|
513
|
+
|
514
|
+
* Rakefile changes:
|
515
|
+
* Stock 3.4.1 setup.rb in all .tar.gz's and .zip's now
|
516
|
+
* LICENSE/README/etc in all packages
|
517
|
+
* fixes to ensure all dbd portions are included
|
518
|
+
* DBD-specific tests are now included in packages
|
519
|
+
|
520
|
+
commit:: 556e08726d9716e5b06d558b8250eb9f0d06df9e
|
521
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
522
|
+
Date:: Wed Jul 23 17:28:00 2008 -0700
|
523
|
+
|
524
|
+
* removed bin/PATHCONV and translated the affected filenames
|
525
|
+
|
526
|
+
commit:: 6d19af7147e4be01363613426610d29e00f72faa
|
527
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
528
|
+
Date:: Wed Jul 23 17:26:51 2008 -0700
|
529
|
+
|
530
|
+
* Moved scripts to bin directory instead of the subdir thing they were in
|
531
|
+
|
532
|
+
commit:: e4b250f620eab7a2aa2f29de8fe70d066e0fdc1b
|
533
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
534
|
+
Date:: Wed Jul 23 17:16:27 2008 -0700
|
535
|
+
|
536
|
+
* Sybase DBD is GONE
|
537
|
+
* New setup.rb
|
538
|
+
|
539
|
+
commit:: b40c85c821a3ef36918386f7097646226d21c2eb
|
540
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
541
|
+
Date:: Wed Jul 23 16:08:10 2008 -0700
|
542
|
+
|
543
|
+
* Removed that nasty ColumnInfo mixin in the Mysql DBD
|
544
|
+
|
545
|
+
commit:: 724ac6bf6d5642442eacd8e1b6254740574997ea
|
546
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
547
|
+
Date:: Wed Jul 23 16:06:44 2008 -0700
|
548
|
+
|
549
|
+
* Fixed DBD tests re: forcing all ColumnInfo keys to symbol
|
550
|
+
|
551
|
+
commit:: b5c21526df27da7eafea5a9969d46d3fdd681e0a
|
552
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
553
|
+
Date:: Wed Jul 23 15:55:19 2008 -0700
|
554
|
+
|
555
|
+
* Removed a lot of cruft from ColumnInfo & Tests
|
556
|
+
* Added deprecation warnings to the aliases provided in ColumnInfo
|
557
|
+
|
558
|
+
commit:: 89ec97e6eb14268d7cc0a117bf4b3c7245a9a802
|
559
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
560
|
+
Date:: Wed Jul 23 14:23:02 2008 -0700
|
561
|
+
|
562
|
+
* ColumnInfo is now a DelegateClass of Hash, instead of inheriting from Hash directly.
|
563
|
+
|
564
|
+
commit:: bd9ff5bc608fadda89c9df4b57f321b35a5a83dd
|
565
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
566
|
+
Date:: Fri Jul 18 07:53:18 2008 -0700
|
567
|
+
|
568
|
+
* Added a nullable requirement for all drivers in dbh#columns.
|
569
|
+
* Fixed a pretty nasty bug getting pkey/unique information in the Pg driver
|
570
|
+
|
571
|
+
commit:: a12c25181800a258c4085a48925e15eb96295863
|
572
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
573
|
+
Date:: Fri Jul 18 06:50:42 2008 -0700
|
574
|
+
|
575
|
+
* Precision/Scale tests: now works both in columns and column_info output for all drivers
|
576
|
+
|
577
|
+
commit:: fa6df70c17e589d6977831543ceaf43885a5ba9d
|
578
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
579
|
+
Date:: Fri Jul 18 04:18:46 2008 -0700
|
580
|
+
|
581
|
+
* Integrated precision_test table into column and columninfo tests. Required collateral changes below.
|
582
|
+
* New Type: DBI::Type::Decimal to represent DECIMAL and NUMERIC types, falls back to Float, parses to stdlib BigDecimal.
|
583
|
+
* TypeUtil's generic conversion map was updated to handle this type and appropriately communicate it in a query.
|
584
|
+
* MySQL treats NUMERIC/DECIMAL as type 246, which isn't in the TYPE_MAP and therefor never got mapped properly.
|
585
|
+
* This impacted the sum bugfix from pre-0.2.0, converting it to BigDecimal. I think this is an improvement.
|
586
|
+
|
587
|
+
commit:: b3584e283d86a95f128cf87133f6c355f57b0306
|
588
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
589
|
+
Date:: Fri Jul 18 03:37:22 2008 -0700
|
590
|
+
|
591
|
+
* Added precision_test table to all DBD tests
|
592
|
+
|
593
|
+
commit:: 73de88a98b1d4477c8309759bf3772e06a053d3c
|
594
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
595
|
+
Date:: Fri Jul 18 03:27:10 2008 -0700
|
596
|
+
|
597
|
+
* sth#column_info tests
|
598
|
+
|
599
|
+
commit:: 989aa098eff6fa306a123d5cac6f6b0441c732fc
|
600
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
601
|
+
Date:: Fri Jul 18 03:12:35 2008 -0700
|
602
|
+
|
603
|
+
* Some dbh#columns tests that validate columninfo data across all DBDs
|
604
|
+
|
605
|
+
commit:: ed963700ac6bdfaa91178d2fca56abb39fce4c34
|
606
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
607
|
+
Date:: Fri Jul 18 02:58:30 2008 -0700
|
608
|
+
|
609
|
+
* Renamed ColumnInfo to DBI::ColumnInfo
|
610
|
+
|
611
|
+
commit:: f6f18a7d39a689af1bc6cf426c9df9b5797677de
|
612
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
613
|
+
Date:: Fri Jul 18 02:38:14 2008 -0700
|
614
|
+
|
615
|
+
* Deprecated with warnings: DBI::Date, DBI::Timestamp, DBI::Time
|
616
|
+
* Added gem dependency 'deprecated' gem
|
617
|
+
|
618
|
+
commit:: 55322e5554dd690066f24b82bb4d152b07cb7bee
|
619
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
620
|
+
Date:: Wed Jul 16 10:26:25 2008 -0700
|
621
|
+
|
622
|
+
* Boolean tests
|
623
|
+
|
624
|
+
commit:: 878a057cd7e0dac6982ebafe991d6c374a5cfd32
|
625
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
626
|
+
Date:: Wed Jul 16 10:22:19 2008 -0700
|
627
|
+
|
628
|
+
* NULL type coercion
|
629
|
+
* Fixed a *lot* of bugs related to these tests :)
|
630
|
+
|
631
|
+
commit:: e9a8f0bf8da1a9a3314c0edce88c62e8ec5dd309
|
632
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
633
|
+
Date:: Wed Jul 16 09:03:45 2008 -0700
|
634
|
+
|
635
|
+
* More type system tests
|
636
|
+
|
637
|
+
commit:: afad45a26658ee9431b01983ef2eda1aed206cdf
|
638
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
639
|
+
Date:: Wed Jul 16 08:19:53 2008 -0700
|
640
|
+
|
641
|
+
* More type tests
|
642
|
+
|
643
|
+
commit:: 172c87f5e6cb122094940727a3e939ddb0a0f76e
|
644
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
645
|
+
Date:: Wed Jul 16 08:11:13 2008 -0700
|
646
|
+
|
647
|
+
* test/dbi/tc_types.rb: DBI::Type and DBI::TypeUtil tests
|
648
|
+
|
649
|
+
commit:: e0df6c9ae41c1f81a5156a9ab97d0e0defd052a2
|
650
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
651
|
+
Date:: Wed Jul 16 07:32:00 2008 -0700
|
652
|
+
|
653
|
+
* Broke up SQLite3 driver
|
654
|
+
|
655
|
+
commit:: c9d39cc800deb4f5738ad6f838d4024d16d2b7c3
|
656
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
657
|
+
Date:: Wed Jul 16 07:18:22 2008 -0700
|
658
|
+
|
659
|
+
* Broke up SQLite driver
|
660
|
+
|
661
|
+
commit:: d88476b1f969053bd1a577914c74329e7ad70dd7
|
662
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
663
|
+
Date:: Wed Jul 16 07:14:35 2008 -0700
|
664
|
+
|
665
|
+
* Broke up Pg DBD
|
666
|
+
|
667
|
+
commit:: 7ecc56e48076bd6e67aa054a2be120ec4b334a69
|
668
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
669
|
+
Date:: Wed Jul 16 07:01:30 2008 -0700
|
670
|
+
|
671
|
+
* Even more readable
|
672
|
+
|
673
|
+
commit:: 310d615b266ca7572dd0fcf6e64834419972b141
|
674
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
675
|
+
Date:: Wed Jul 16 07:00:34 2008 -0700
|
676
|
+
|
677
|
+
* Base Mysql DBD a little more readable now
|
678
|
+
|
679
|
+
commit:: 74de7ae7cb2ca09172a08208cb86d5b2cbc8e5fa
|
680
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
681
|
+
Date:: Wed Jul 16 06:59:26 2008 -0700
|
682
|
+
|
683
|
+
* Mysql DBD broken into several parts
|
684
|
+
|
685
|
+
commit:: 7db39811774f0fd7e488784fa5376f45ae330ff2
|
686
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
687
|
+
Date:: Wed Jul 16 06:39:29 2008 -0700
|
688
|
+
|
689
|
+
* removed unused version.rb file
|
690
|
+
|
691
|
+
commit:: ca71d1cabc6c794928bb6dfe96deab0c083d6ee7
|
692
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
693
|
+
Date:: Wed Jul 16 06:38:23 2008 -0700
|
694
|
+
|
695
|
+
* Moved DBI::TypeUtil to separate file
|
696
|
+
|
697
|
+
commit:: d0f196c972f41e9abb1b766514b58265041bb75a
|
698
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
699
|
+
Date:: Wed Jul 16 06:34:22 2008 -0700
|
700
|
+
|
701
|
+
* Moved DBI::SQL:PreparedStatement to its own file
|
702
|
+
|
703
|
+
commit:: 31aaffe228e109a8414102ad67bb80fc6701309b
|
704
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
705
|
+
Date:: Wed Jul 16 06:30:41 2008 -0700
|
706
|
+
|
707
|
+
* DBI::SQL::BasicBind and DBI::SQL::BasicQuote are now things of the past
|
708
|
+
|
709
|
+
commit:: b53d794f89461972ef304656ba84679800c91a4b
|
710
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
711
|
+
Date:: Wed Jul 16 06:20:24 2008 -0700
|
712
|
+
|
713
|
+
* Broke up DBI::Utils::* namespace into separate files
|
714
|
+
|
715
|
+
commit:: f8c4f21bfcfc23afeee9046e4df9b837aa9d91ad
|
716
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
717
|
+
Date:: Wed Jul 16 06:09:07 2008 -0700
|
718
|
+
|
719
|
+
* Nixed superfluous find require
|
720
|
+
|
721
|
+
commit:: 748ab1688fd37e139fcef820cf4c44a01287681a
|
722
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
723
|
+
Date:: Wed Jul 16 06:08:17 2008 -0700
|
724
|
+
|
725
|
+
* Moved DBI::Base::* to separate files
|
726
|
+
|
727
|
+
commit:: 0174ee2952308ca7f4528047372a4e2af6490b79
|
728
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
729
|
+
Date:: Wed Jul 16 06:03:23 2008 -0700
|
730
|
+
|
731
|
+
* Broke handle classes out into separate files
|
732
|
+
|
733
|
+
commit:: 001b38df88f6ac86a4c83fdcdee7503b85bdea2e
|
734
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
735
|
+
Date:: Wed Jul 16 05:57:06 2008 -0700
|
736
|
+
|
737
|
+
* Yanked DBI::Binary, Exception classes, and SQL_* constants out into their own files
|
738
|
+
|
739
|
+
commit:: 6651c7ecacb195c89212e0899b2f24e8f8cac0b2
|
740
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
741
|
+
Date:: Wed Jul 16 04:23:42 2008 -0700
|
742
|
+
|
743
|
+
* DBI and SQLite binding API slightly differs and both produce mildly
|
744
|
+
different results when testing, the tests were modified to take advantage of
|
745
|
+
this without copying code.
|
746
|
+
|
747
|
+
commit:: d92b9e3a31f599ab0fb3502b5af87f1c49f99324
|
748
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
749
|
+
Date:: Wed Jul 16 04:01:03 2008 -0700
|
750
|
+
|
751
|
+
* SQLite3 driver now works with new type system
|
752
|
+
* Removed some deprecated fetch specializations that would never be called due to the new way fetch is handled
|
753
|
+
|
754
|
+
commit:: f88beb99ddea04ed25b47a2148e759f777a65e39
|
755
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
756
|
+
Date:: Tue Jul 15 23:28:26 2008 -0700
|
757
|
+
|
758
|
+
* Case-insensitive require fixes in DBI
|
759
|
+
* Binding API fixes for MySQL
|
760
|
+
|
761
|
+
commit:: 204ab87a01022a79d4a5e7781e22911944ab79f8
|
762
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
763
|
+
Date:: Mon Jul 14 19:29:28 2008 -0700
|
764
|
+
|
765
|
+
* Cleaned up DBI tests. Removed several.
|
766
|
+
|
767
|
+
commit:: eafb622a020b08664db9dffbbd7f28da96caf48a
|
768
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
769
|
+
Date:: Mon Jul 14 19:05:18 2008 -0700
|
770
|
+
|
771
|
+
* WARNING: Most DBI tests are broken right now
|
772
|
+
* Gutted quoting system entirely, favoring the new type system to handle it.
|
773
|
+
* ByteA is now a type, PGcoerce module is gone, gone, gone.
|
774
|
+
* Removed quote instance methods in Pg, replaced with a quote class method for aiding types
|
775
|
+
* All complex types use the E'' quoting syntax now, which should make Pg happier.
|
776
|
+
* Small changes to the type system:
|
777
|
+
* Conversions will now only cascade if the object remains unchanged. This prevents double-quoting.
|
778
|
+
* All recognized types should be properly quoted now.
|
779
|
+
|
780
|
+
commit:: 7c8e5242ef7f2b4764a07882769d1a920a934f6d
|
781
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
782
|
+
Date:: Mon Jul 14 16:46:11 2008 -0700
|
783
|
+
|
784
|
+
* Type conversion seems to be doing its job
|
785
|
+
* ByteA probably still isn't working right.
|
786
|
+
|
787
|
+
commit:: 1d9307bdb592168ac64bb6884b0d29c9231cfe5e
|
788
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
789
|
+
Date:: Mon Jul 14 15:05:03 2008 -0700
|
790
|
+
|
791
|
+
* New method: DBI::TypeUtil.type_name_to_module converts the type_name from columns output into a class
|
792
|
+
* original functionality decoupled from DBI#column_types
|
793
|
+
* DBI::DBD::Pg::Type::Array now has a base_type attribute to explain the encapsulated type
|
794
|
+
* Pg columns now returns array types as a dbi_type with a constructed Array object as the value
|
795
|
+
* More tests for Pg arrays
|
796
|
+
|
797
|
+
commit:: 8df9e250bc88a1e5af242b2ebe7340afbf1262e9
|
798
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
799
|
+
Date:: Mon Jul 14 14:44:11 2008 -0700
|
800
|
+
|
801
|
+
* Pg array -> Ruby array parser (with types) working now
|
802
|
+
|
803
|
+
commit:: c0747f49424fe482d503008c1ffebbb973b22534
|
804
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
805
|
+
Date:: Mon Jul 14 13:05:38 2008 -0700
|
806
|
+
|
807
|
+
* An attempt at converting ruby arrays to Pg arrays in the Pg driver
|
808
|
+
|
809
|
+
commit:: a43f3e3c1b4878c4ecb65c9d64ff79eb58680803
|
810
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
811
|
+
Date:: Mon Jul 14 12:16:22 2008 -0700
|
812
|
+
|
813
|
+
* Shifted types of arrays:
|
814
|
+
* Types in columns output will now reflect the base type of the array (integer, varchar, etc)
|
815
|
+
* The flag "array_of_type" will be set to true if the column is an array
|
816
|
+
* Note: there is still no indication of the dimensions or any information about those dimensions.
|
817
|
+
|
818
|
+
commit:: f3c802c35b417118b29a948c91d3c736fd62c882
|
819
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
820
|
+
Date:: Mon Jul 14 11:32:17 2008 -0700
|
821
|
+
|
822
|
+
* Lots of healthy TODO modification
|
823
|
+
* test/dbd/postgresql/test_arrays.rb filled out a little bit
|
824
|
+
|
825
|
+
commit:: 8aa84cd97503244f204efcf07afede10cc2827ea
|
826
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
827
|
+
Date:: Mon Jul 14 09:36:04 2008 -0700
|
828
|
+
|
829
|
+
* array table added for Pg
|
830
|
+
|
831
|
+
commit:: e685648e01aed1cfbc47415faa6d7c4b94609798
|
832
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
833
|
+
Date:: Mon Jul 7 03:16:30 2008 -0700
|
834
|
+
|
835
|
+
* DBI::DBD::DIR is *gone*
|
836
|
+
* load_driver rewritten and simplified
|
837
|
+
* new support methods to enumerate available DBDs
|
838
|
+
|
839
|
+
commit:: 5481609ad0a18a56727b1582b15c33a0692011d9
|
840
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
841
|
+
Date:: Mon Jul 7 02:40:34 2008 -0700
|
842
|
+
|
843
|
+
* Removed all deprecated drivers (see TODO list for current exceptions)
|
844
|
+
* Updated TODO
|
845
|
+
|
846
|
+
commit:: 7ac4465c99a24708d93d3f99dd688db0c981e4f2
|
847
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
848
|
+
Date:: Mon Jul 7 02:39:13 2008 -0700
|
849
|
+
|
850
|
+
* Pg array test stub
|
851
|
+
|
852
|
+
commit:: 4bc3429cb83caec67e6019a94c75d80577d41dab
|
853
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
854
|
+
Date:: Thu Jun 12 12:50:03 2008 -0700
|
855
|
+
|
856
|
+
* Fixed a faulty tables test that will never be consistent across many postgresql versions
|
857
|
+
|
858
|
+
commit:: 4553990f05884ec9e57bd7b4a21bc9f12eb3edc2
|
859
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
860
|
+
Date:: Fri Apr 25 04:37:55 2008 -0700
|
861
|
+
|
862
|
+
* Indentation fixes to Mysql driver
|
863
|
+
|
864
|
+
commit:: e7f7fcbff57f79da9ff5b99c702ea9d77c06cedb
|
865
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
866
|
+
Date:: Fri Apr 25 04:33:40 2008 -0700
|
867
|
+
|
868
|
+
* Mysql driver/tests updated for types API
|
869
|
+
|
870
|
+
commit:: bce8e2388b5b4cc911ebe6ac047f20bf942ee269
|
871
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
872
|
+
Date:: Fri Apr 25 04:13:51 2008 -0700
|
873
|
+
|
874
|
+
* Added a couple of comments.
|
875
|
+
|
876
|
+
commit:: 458f3212cdee4fa7ccfae696d63b4d59df59946c
|
877
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
878
|
+
Date:: Fri Apr 25 04:12:50 2008 -0700
|
879
|
+
|
880
|
+
* Removed dead code
|
881
|
+
|
882
|
+
commit:: a68b55ccf2eaa8f46b095c91820efd423159f446
|
883
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
884
|
+
Date:: Fri Apr 25 04:11:51 2008 -0700
|
885
|
+
|
886
|
+
* Some indentation fixes
|
887
|
+
|
888
|
+
commit:: 58fced679c997a34533a3b73b9a2c61a44976959
|
889
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
890
|
+
Date:: Fri Apr 25 04:07:10 2008 -0700
|
891
|
+
|
892
|
+
* Postgresql driver/tests working
|
893
|
+
|
894
|
+
commit:: 0c4fb698b5b87a4c359223c54626e841be746ff1
|
895
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
896
|
+
Date:: Fri Apr 25 02:21:54 2008 -0700
|
897
|
+
|
898
|
+
* Fixed DBI tests
|
899
|
+
|
900
|
+
commit:: aace8131284ec5dea62d147eb4f1486aa88211ee
|
901
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
902
|
+
Date:: Fri Apr 25 02:15:10 2008 -0700
|
903
|
+
|
904
|
+
* Fixed sqlite tests
|
905
|
+
|
906
|
+
commit:: 6345cd1a6929ef396c4f661220e1a8e1eda9f1d2
|
907
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
908
|
+
Date:: Fri Apr 25 02:14:10 2008 -0700
|
909
|
+
|
910
|
+
* Fixed sqlite3 tests
|
911
|
+
|
912
|
+
commit:: ec003651a813c8dc1a3408bc332fb139dd02a3a4
|
913
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
914
|
+
Date:: Wed Apr 23 21:19:39 2008 -0700
|
915
|
+
|
916
|
+
* Starting in on fixes to the pg driver
|
917
|
+
* Lots of test changes -- mostly storing statement handles as a class var so we can finish them if the test fails
|
918
|
+
|
919
|
+
commit:: 87d084e9e12fbe1e9e853d3ad3c4c73f21b4c033
|
920
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
921
|
+
Date:: Thu Apr 17 17:18:01 2008 -0700
|
922
|
+
|
923
|
+
* Fix for the Rakefile that tests the ability to require the drivers before building namespaces for them
|
924
|
+
* Many fixes to test/dbd/general/test_types
|
925
|
+
* Many fixes to SQLite3 driver regarding type handling
|
926
|
+
|
927
|
+
commit:: 41e082f10a697ab072fa77cf125d91d3131c726d
|
928
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
929
|
+
Date:: Thu Apr 17 14:22:18 2008 -0700
|
930
|
+
|
931
|
+
* removed some commented out code from the SQLite3 driver.
|
932
|
+
|
933
|
+
commit:: 6801d689c01782242d92546fe290142cabbd589a
|
934
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
935
|
+
Date:: Thu Apr 17 14:06:58 2008 -0700
|
936
|
+
|
937
|
+
* Null handling
|
938
|
+
* removed type conversion from SQLite driver
|
939
|
+
|
940
|
+
commit:: 6b53384d47c2b946e811128a49c844c4f49dd921
|
941
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
942
|
+
Date:: Thu Apr 17 13:53:08 2008 -0700
|
943
|
+
|
944
|
+
* Fixed Date/Time parsing
|
945
|
+
|
946
|
+
commit:: 8b76da9c00dcb6cbb32c88ae00f116443eb8905e
|
947
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
948
|
+
Date:: Thu Apr 17 13:43:26 2008 -0700
|
949
|
+
|
950
|
+
* Inbound parameter conversion
|
951
|
+
|
952
|
+
commit:: f72d55ab4dd321b4668dfc239758c9c68ba8d83b
|
953
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
954
|
+
Date:: Thu Apr 17 12:27:19 2008 -0700
|
955
|
+
|
956
|
+
* Moved parse logic from SQLite3 driver to DBI::StatementHandle#column_types
|
957
|
+
|
958
|
+
commit:: 27938c99e9986cc4ba9cc2fe395dd25909772c80
|
959
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
960
|
+
Date:: Thu Apr 17 12:21:48 2008 -0700
|
961
|
+
|
962
|
+
* A basic dry-run of DBI::Type.parse for various types
|
963
|
+
|
964
|
+
commit:: 2cc28948db2205073fc2f86067cd7fafc189bd16
|
965
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
966
|
+
Date:: Thu Apr 17 11:23:58 2008 -0700
|
967
|
+
|
968
|
+
* Added dbi/types to require list
|
969
|
+
* Added a copyright notice in the source
|
970
|
+
|
971
|
+
commit:: fadc02793d86ffdf4dea84cb71f727a8b5ce9f72
|
972
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
973
|
+
Date:: Mon Apr 14 12:00:54 2008 -0700
|
974
|
+
|
975
|
+
* Added a StatementHandle#dbh parameter to get the dbh that created the statement handle
|
976
|
+
|
977
|
+
commit:: 99304f17ca5cc5cbe8b7caddc917f259d2d71d70
|
978
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
979
|
+
Date:: Mon Apr 14 10:06:21 2008 -0700
|
980
|
+
|
981
|
+
* Added a "driver_name" property to DatabaseHandles that yields the driver name information as a string.
|
982
|
+
* Reformatted the majority of dbi.rb
|
983
|
+
|
984
|
+
commit:: ec63e12741da5cd40b9a7ac3b26e15ee622d4d4c
|
985
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
986
|
+
Date:: Fri Apr 4 08:38:51 2008 -0700
|
987
|
+
|
988
|
+
ColumnInfo sanity patch by Pistos
|
989
|
+
|
990
|
+
commit:: b87cd704db9a6bf031255ae7ca30b70e0df621e0
|
991
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
992
|
+
Date:: Sun Mar 30 22:20:23 2008 -0700
|
993
|
+
|
994
|
+
* Initial (untested) types implementation. Still workin' on it.
|
995
|
+
|
996
|
+
commit:: f0c124d920ef6996ea63400686a563c6e89cf694
|
997
|
+
Author:: Erik Hollensbe <erikh@75-142-20-218.dhcp.or.charter.com>
|
998
|
+
Date:: Mon Mar 24 09:24:48 2008 -0700
|
999
|
+
|
1000
|
+
* basic prototype/description of type handling
|
1001
|
+
|
1002
|
+
commit:: 8a97a5dd173de711ed22a66d829fcb6b4cd06250
|
1003
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
1004
|
+
Date:: Mon Mar 17 08:49:37 2008 -0700
|
1005
|
+
|
1006
|
+
* Rakefile's a little easier to decipher now
|
1007
|
+
* Each DBD has it's own version!
|
1008
|
+
|
1009
|
+
commit:: d32cf2f2ceb161fb63768657b89f4ee2fd783b06
|
1010
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
1011
|
+
Date:: Mon Mar 17 08:25:44 2008 -0700
|
1012
|
+
|
1013
|
+
* Reworked Rakefile to gem all supported DBDs and DBI separately
|
1014
|
+
|
1015
|
+
== 0.2.0 - 03/16/2008
|
1016
|
+
|
1017
|
+
=== Summary
|
1018
|
+
|
1019
|
+
* SQLite (2.x) driver rewritten in ruby
|
1020
|
+
* SQLite (3.x) driver provided by Jun Mukai
|
1021
|
+
* Migrated DBD::Pg to 'pg' low-level library
|
1022
|
+
* bytea and LOB support for DBD::Pg
|
1023
|
+
* New DBD Test suite
|
1024
|
+
* Tons of bug fixes
|
1025
|
+
|
1026
|
+
commit:: 7bc29dd74badd75daa99b4c1f2c97e93dbc6a405
|
1027
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
1028
|
+
Date:: Fri Mar 14 11:13:48 2008 -0700
|
1029
|
+
|
1030
|
+
* Fixed two bugs in the Pg driver (thanks again Mike Pomraning):
|
1031
|
+
* A tables bug where the system tables were not being sent back.
|
1032
|
+
* A columns bug where the columns were not properly selected when the schema search path was altered.
|
1033
|
+
|
1034
|
+
commit:: eaf228bdf1c992cd8c523872057e5d2e1901eb6d
|
1035
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1036
|
+
Date:: Wed Mar 12 15:35:08 2008 -0700
|
1037
|
+
|
1038
|
+
* Fix for timestamp type handling under mysql
|
1039
|
+
|
1040
|
+
commit:: ce4c59e0a60f0dc4bbd66cc84c1b2a50df17c6ca
|
1041
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
1042
|
+
Date:: Tue Mar 11 10:58:18 2008 -0700
|
1043
|
+
|
1044
|
+
* Some fixes for timestamp handling for SQLite3
|
1045
|
+
|
1046
|
+
commit:: beb4c5b31b355180761df024c6933e1b67a2f59c
|
1047
|
+
Author:: Erik Hollensbe <erik@hollensbe.org>
|
1048
|
+
Date:: Tue Mar 11 09:09:37 2008 -0700
|
1049
|
+
|
1050
|
+
* Patch provided by Mike Pomraning that gets timestamps in a sane fashion!
|
1051
|
+
|
1052
|
+
commit:: a6d70ffb23bb0493cd73ebe38dd413a9d86173bd
|
1053
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1054
|
+
Date:: Sat Mar 8 19:05:58 2008 -0800
|
1055
|
+
|
1056
|
+
* Fixed a DBI::Timestamp#to_s error
|
1057
|
+
|
1058
|
+
commit:: 48690de14c144ac030b12a2a627db611a0ca257c
|
1059
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1060
|
+
Date:: Sat Mar 8 01:19:42 2008 -0800
|
1061
|
+
|
1062
|
+
* Fix for #3916 - sth.any? and sth.rows.zero? not consistent across DBDs
|
1063
|
+
|
1064
|
+
commit:: 55f118d3e54dc546b133083271d80caccf00ab53
|
1065
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1066
|
+
Date:: Sat Mar 8 00:34:51 2008 -0800
|
1067
|
+
|
1068
|
+
* Peter Schiller's thread-safety patch
|
1069
|
+
* Some more tests surrounding the row count and fetchable?
|
1070
|
+
|
1071
|
+
commit:: b496e0d981891fad6291dc49161963a15f05472a
|
1072
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1073
|
+
Date:: Thu Mar 6 22:55:07 2008 -0800
|
1074
|
+
|
1075
|
+
* Plenty of DBI::Time fixes (based on a patch from #7710 and tests that were written as generals)
|
1076
|
+
|
1077
|
+
commit:: 679bde33924ee368322f7ece4509822e07e68955
|
1078
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1079
|
+
Date:: Thu Mar 6 21:42:00 2008 -0800
|
1080
|
+
|
1081
|
+
* #6965 Fix and test (not ideal, but it does work)
|
1082
|
+
|
1083
|
+
commit:: 3819bd468b941465abaffd6b7adc5afa1ddd0406
|
1084
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1085
|
+
Date:: Thu Mar 6 21:11:06 2008 -0800
|
1086
|
+
|
1087
|
+
* #4727 integrated
|
1088
|
+
|
1089
|
+
commit:: 32c0e5e6fea308cd52891bf6dac589ad84b29ba4
|
1090
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1091
|
+
Date:: Thu Mar 6 20:57:00 2008 -0800
|
1092
|
+
|
1093
|
+
* Applied patch from ticket #7711
|
1094
|
+
|
1095
|
+
commit:: 34286112df17fbdb7588f45b176a42fb3a77aaae
|
1096
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1097
|
+
Date:: Sun Feb 24 12:56:35 2008 -0800
|
1098
|
+
|
1099
|
+
* Fixed bug #10466
|
1100
|
+
|
1101
|
+
commit:: 1f19663fd9b31b0f2f0a111f227220d5ee8cbe1d
|
1102
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1103
|
+
Date:: Sun Feb 24 12:09:44 2008 -0800
|
1104
|
+
|
1105
|
+
* Fixed #1082
|
1106
|
+
|
1107
|
+
commit:: f3e6e077e4073c892d8449ec6e1912ffe9f76f95
|
1108
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1109
|
+
Date:: Sun Feb 24 12:02:23 2008 -0800
|
1110
|
+
|
1111
|
+
* ByteA fixes!
|
1112
|
+
|
1113
|
+
commit:: 8668eb0c1561b49b144f4a56c3edc2bce90bc2a0
|
1114
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1115
|
+
Date:: Sun Feb 24 00:29:00 2008 -0800
|
1116
|
+
|
1117
|
+
* Fixed most of the LOB support (yay!)
|
1118
|
+
|
1119
|
+
commit:: 32ac057631b16429051c90fa9aab3ed1bb560e32
|
1120
|
+
Author:: Erik Hollensbe <erikh@speyside.(none)>
|
1121
|
+
Date:: Sat Feb 23 23:35:19 2008 -0800
|
1122
|
+
|
1123
|
+
* Initial porting attempt from ruby-postgres to ruby-pg
|
1124
|
+
* Test fixes and additions
|
1125
|
+
|
1126
|
+
== 0.1.2 - 02-Sep-2006
|
1127
|
+
|
1128
|
+
=== General
|
1129
|
+
* Paul DuBois: test/dbi/tc_dbi.rb: DBI version number test failed because it
|
1130
|
+
was expected to be 0.1.0. (Should have been 0.1.1.) But 0.1.1 has been
|
1131
|
+
released, so update DBI version number and expected number in test to 0.1.2.
|
1132
|
+
|
1133
|
+
== 0.1.1 - 12-Aug-2006
|
1134
|
+
|
1135
|
+
=== General
|
1136
|
+
|
1137
|
+
* Paul DuBois: README: Added URLs for the RubyForge DBI project.
|
1138
|
+
* Patrick May: removed misleading space in setup.rb config example.
|
1139
|
+
* Francis Hwang: fixed bug 597: behaviour of StatementHandle#fetch doesn't
|
1140
|
+
match DBI specification
|
1141
|
+
* incorporated Matthew Bloch's patch for handling bad timestamps like
|
1142
|
+
'0000-00-00 00:00:00'
|
1143
|
+
|
1144
|
+
=== MySQL
|
1145
|
+
|
1146
|
+
* Paul DuBois: Mysql.rb. Expose additional attributes through Database::func():
|
1147
|
+
:client_info (String), :client_version (Fixnum), :host_info (String),
|
1148
|
+
:info (String), :proto_info (Fixnum), :server_info (String),
|
1149
|
+
:stat (String), :thread_id (Fixnum).
|
1150
|
+
* Paul DuBois:
|
1151
|
+
Mysql.rb. Modified column_info method to support standard sql_type and
|
1152
|
+
type_name column attributes and MySQL-specific mysql_type_name
|
1153
|
+
attribute.
|
1154
|
+
MYSQL_to_XOPEN hash: Added LONGTEXT and BIT members, corrected length
|
1155
|
+
for BLOB and MEDIUMBLOB members.
|
1156
|
+
* Paul DuBois: Mysql.rb. Renamed column info attributes/methods:
|
1157
|
+
_type, _length, _max_length, _flags are now
|
1158
|
+
mysql_type, mysql_length, mysql_max_length, mysql_flags
|
1159
|
+
* Paul DuBois:
|
1160
|
+
Mysql.rb. Modified column_info method to support standard column
|
1161
|
+
attributes: nullable, primary, unique, indexed
|
1162
|
+
Modify column_info method to support MySQL-specific column
|
1163
|
+
attributes: _type, _length, _max_length, _flags
|
1164
|
+
* Paul DuBois:
|
1165
|
+
Mysql.rb. Test for sqlstate method using respond_to? rather than by
|
1166
|
+
raising an exception.
|
1167
|
+
Implemented mysql_compression={0|1} option in DSN to disable/enable
|
1168
|
+
compression of client/server protocol. (Default off.)
|
1169
|
+
Implemented mysql_client_found_rows={0|1} option in DSN to cause
|
1170
|
+
server to return rows-changed counts (0) or rows-matched counts (1)
|
1171
|
+
for statements that modify rows (mostly relevant for UPDATE). (Default
|
1172
|
+
is rows-changed counts)
|
1173
|
+
Bugfix: column_info calculated precision as col.length - col.decimals.
|
1174
|
+
Should be col.length (precision is not just the digits to left of
|
1175
|
+
decimal point).
|
1176
|
+
* Paul DuBois: Mysql.rb: Added state member value to DBI::DatabaseError
|
1177
|
+
exceptions for MySQL. If mysql-ruby doesn't define a sqlstate method that
|
1178
|
+
provides the SQLSTATE value, state is set to nil (which is the default value
|
1179
|
+
anyway).
|
1180
|
+
* Paul DuBois: Mysql.rb: Enabled use of mysql_read_default_file and
|
1181
|
+
mysql_read_default_group options in DSN for MySQL. These options
|
1182
|
+
enable option files to be read. This change addresses bug #1951.
|
1183
|
+
* Paul DuBois: MySQL supports transactions.
|
1184
|
+
|
1185
|
+
=== SQLite
|
1186
|
+
|
1187
|
+
* Daniel Berger: Removed hardcoded search paths to search path; Modified
|
1188
|
+
dir_config name to lower case
|
1189
|
+
|
1190
|
+
== 0.1.0 - 16-Feb-2006
|
1191
|
+
* Project taken over by Kirk Haines, Francis Hwang, Patrick May and Daniel
|
1192
|
+
Berger as of January, 2006 (with the permission of Michael Neumann).
|
1193
|
+
* Changelog style changed from diff style to summary style. If you want diffs,
|
1194
|
+
you can watch the CVS commits at
|
1195
|
+
http://ruby-dbi.rubyforge.org/statcvs/commit_log.html.
|
1196
|
+
* Old RUnit tests replaced with Test/Unit style tests.
|
1197
|
+
* Updated the README file to actually include useful documentation instead of
|
1198
|
+
pointing to an html document.
|
1199
|
+
* Lots of internal file/directory reorganization and renaming - none of which
|
1200
|
+
should matter to you.
|
1201
|
+
* General refactoring of the DBI::Row class including a bug fix where using
|
1202
|
+
multiple column references did not return the proper values.
|
1203
|
+
* Corresponding test suite additions and changes for DBI::Row.
|
1204
|
+
* Removed the dbrc.rb file from this distribution. The dbi-dbrc package can
|
1205
|
+
be downloaded separately from the RAA or installed as a gem.
|
1206
|
+
* Fixed bug #2793 (silent driver load failure). This also covers patch #603.
|
1207
|
+
* Fixed bug #1304 (comparing DBI::Timestamp with nil).
|
1208
|
+
* Fixed bugs #2099 (permissions issues on Windows). This also covers bug
|
1209
|
+
#2567.
|
1210
|
+
|
1211
|
+
2004-05-20 10:36 tag dbi-0-0-23
|
1212
|
+
|
1213
|
+
2004-05-20 10:36 Michael Neumann <mneumann@ntecs.de>
|
1214
|
+
|
1215
|
+
Changed:
|
1216
|
+
lib/dbi/version.rb (1.9), "Exp", lines: +2 -2
|
1217
|
+
|
1218
|
+
increased version
|
1219
|
+
|
1220
|
+
2004-05-20 10:33 Michael Neumann <mneumann@ntecs.de>
|
1221
|
+
|
1222
|
+
Added:
|
1223
|
+
build/README (1.1)
|
1224
|
+
|
1225
|
+
initial creation
|
1226
|
+
|
1227
|
+
2004-05-20 10:31 Michael Neumann <mneumann@ntecs.de>
|
1228
|
+
|
1229
|
+
Changed:
|
1230
|
+
build/USER (1.4), "Exp", lines: +1 -0
|
1231
|
+
|
1232
|
+
added whole name of user andreas (for CVS changelog)
|
1233
|
+
|
1234
|
+
2004-05-20 10:28 Michael Neumann <mneumann@ntecs.de>
|
1235
|
+
|
1236
|
+
Changed:
|
1237
|
+
lib/dbd_odbc/ODBC.rb (1.10), "Exp", lines: +2 -2
|
1238
|
+
|
1239
|
+
modified email and copyright
|
1240
|
+
|
1241
|
+
2004-05-20 10:27 Michael Neumann <mneumann@ntecs.de>
|
1242
|
+
|
1243
|
+
Changed:
|
1244
|
+
lib/dbd_odbc/ODBC.rb (1.9), "Exp", lines: +20 -3
|
1245
|
+
|
1246
|
+
Implemented DNS-less connections, see [ruby-talk:67352] and [ruby-talk:100837]
|
1247
|
+
|
1248
|
+
2004-05-19 20:31 Michael Neumann <mneumann@ntecs.de>
|
1249
|
+
|
1250
|
+
Changed:
|
1251
|
+
lib/dbi/test/testsqlquote.rb (1.9), "Exp", lines: +1 -1
|
1252
|
+
lib/dbi/sql.rb (1.18), "Exp", lines: +5 -2
|
1253
|
+
|
1254
|
+
Fixed problems with quoting Time's in Postgres (and probably some other
|
1255
|
+
databases). Time's are now represented as RFC-2822 strings, with numeric
|
1256
|
+
timezones and not timezone abbreviations (e.g. now +0200 instead CEST).
|
1257
|
+
According to Brad Hilton, there are problems with e.g. the IDT timezone which
|
1258
|
+
is used in different timezones.
|
1259
|
+
|
1260
|
+
2004-05-19 20:20 Michael Neumann <mneumann@ntecs.de>
|
1261
|
+
|
1262
|
+
Changed:
|
1263
|
+
lib/dbi/test/testsqlquote.rb (1.8), "Exp", lines: +6 -0
|
1264
|
+
|
1265
|
+
added testcase for quoting of Dates
|
1266
|
+
|
1267
|
+
2004-05-18 13:30 Andreas Schwarz
|
1268
|
+
|
1269
|
+
Changed:
|
1270
|
+
ext/dbd_sqlite/SQLite.c (1.10), "Exp", lines: +3 -2
|
1271
|
+
|
1272
|
+
return number of changed rows in do(); closes #558
|
1273
|
+
|
1274
|
+
2004-05-13 14:24 Michael Neumann <mneumann@ntecs.de>
|
1275
|
+
|
1276
|
+
Changed:
|
1277
|
+
lib/dbd_oracle/Oracle.rb (1.7), "Exp", lines: +4 -3
|
1278
|
+
|
1279
|
+
Database#tables now returns tables AND views
|
1280
|
+
|
1281
|
+
2004-04-27 16:29 Michael Neumann <mneumann@ntecs.de>
|
1282
|
+
|
1283
|
+
Changed:
|
1284
|
+
lib/dbi/dbi.rb (1.42), "Exp", lines: +9 -1
|
1285
|
+
lib/dbi/sql.rb (1.17), "Exp", lines: +3 -3
|
1286
|
+
lib/dbi/test/testsqlcoerce.rb (1.5), "Exp", lines: +8 -0
|
1287
|
+
|
1288
|
+
* added comparison method DBI::Timestamp#==
|
1289
|
+
|
1290
|
+
* DBI::SQL::BasicQuote::Coerce#as_timestampe: fixed conversion of timestamps when
|
1291
|
+
timezones like "+08:00" are given (instead "+08"). (Marek Janukowicz)
|
1292
|
+
|
1293
|
+
2004-04-26 08:40 Michael Neumann <mneumann@ntecs.de>
|
1294
|
+
|
1295
|
+
Changed:
|
1296
|
+
ext/dbd_sqlite/SQLite.c (1.9), "Exp", lines: +12 -2
|
1297
|
+
|
1298
|
+
raise exception if sql statement contains NUL characters (patch by Shirai,Kaoru)
|
1299
|
+
|
1300
|
+
2004-04-22 20:44 Michael Neumann <mneumann@ntecs.de>
|
1301
|
+
|
1302
|
+
Changed:
|
1303
|
+
build/package.sh (1.9), "Exp", lines: +4 -5
|
1304
|
+
|
1305
|
+
*
|
1306
|
+
|
1307
|
+
2004-04-22 20:10 tag dbi-0-0-22
|
1308
|
+
|
1309
|
+
2004-04-22 20:10 Michael Neumann <mneumann@ntecs.de>
|
1310
|
+
|
1311
|
+
Changed:
|
1312
|
+
lib/dbi/version.rb (1.8), "Exp", lines: +2 -2
|
1313
|
+
|
1314
|
+
new version
|
1315
|
+
|
1316
|
+
2004-04-22 20:08 Michael Neumann <mneumann@ntecs.de>
|
1317
|
+
|
1318
|
+
Changed:
|
1319
|
+
setup.rb (1.5), "Exp", lines: +1 -1
|
1320
|
+
lib/dbd_pg/test/testdbipg.rb (1.2), "Exp", lines: +4 -4
|
1321
|
+
lib/dbi/test/testrow.rb (1.6), "Exp", lines: +2 -2
|
1322
|
+
lib/dbi/test/testsqlbind.rb (1.10), "Exp", lines: +4 -4
|
1323
|
+
lib/dbi/test/testsqlcoerce.rb (1.4), "Exp", lines: +2 -2
|
1324
|
+
lib/dbi/test/testsqlquote.rb (1.7), "Exp", lines: +2 -2
|
1325
|
+
|
1326
|
+
removed "don't put space before argument parentheses" warnings (ruby18)
|
1327
|
+
|
1328
|
+
2004-04-22 19:59 Michael Neumann <mneumann@ntecs.de>
|
1329
|
+
|
1330
|
+
Deleted:
|
1331
|
+
build/DBI-VERSIONS (1.7)
|
1332
|
+
build/create_changelog.rb (1.3)
|
1333
|
+
build/cvs2cl (1.2)
|
1334
|
+
doc/sf_logo.html (1.2)
|
1335
|
+
Added:
|
1336
|
+
build/cvs2cl.pl (1.1)
|
1337
|
+
Changed:
|
1338
|
+
build/Makefile (1.5), "Exp", lines: +3 -3
|
1339
|
+
build/package.sh (1.8), "Exp", lines: +6 -14
|
1340
|
+
doc/ToDo (1.2), "Exp", lines: +1 -0
|
1341
|
+
doc/index.rd (1.34), "Exp", lines: +5 -3
|
1342
|
+
|
1343
|
+
moved to rubyforge. modified changelog generation.
|
1344
|
+
|
1345
|
+
2004-04-22 19:57 Michael Neumann <mneumann@ntecs.de>
|
1346
|
+
|
1347
|
+
Added:
|
1348
|
+
lib/dbd_frontbase/FrontBase.rb (1.1)
|
1349
|
+
lib/dbd_frontbase/README (1.1)
|
1350
|
+
Changed:
|
1351
|
+
lib/PATHCONV (1.11), "Exp", lines: +1 -0
|
1352
|
+
|
1353
|
+
imported FrontBase DBD (from Cail Borrell)
|
1354
|
+
|
1355
|
+
2004-04-22 18:46 Michael Neumann <mneumann@ntecs.de>
|
1356
|
+
|
1357
|
+
Changed:
|
1358
|
+
doc/index.rd (1.33), "Exp", lines: +18 -8
|
1359
|
+
|
1360
|
+
moved to rubyforge
|
1361
|
+
|
1362
|
+
2004-04-22 17:59 Michael Neumann <mneumann@ntecs.de>
|
1363
|
+
|
1364
|
+
Changed:
|
1365
|
+
setup.rb (1.4), "Exp", lines: +1 -1
|
1366
|
+
|
1367
|
+
remove parens warning
|
1368
|
+
|
1369
|
+
2003-11-05 20:46 Michael Neumann <mneumann@ntecs.de>
|
1370
|
+
|
1371
|
+
Changed:
|
1372
|
+
lib/dbi/dbi.rb (1.41), "Exp", lines: +2 -1
|
1373
|
+
|
1374
|
+
StatementHandle#execute returns nil instead for internal use intended DBI::Row object
|
1375
|
+
|
1376
|
+
2003-09-16 07:46 Michael Neumann <mneumann@ntecs.de>
|
1377
|
+
|
1378
|
+
Changed:
|
1379
|
+
lib/dbd_pg/Pg.rb (1.33), "Exp", lines: +13 -2
|
1380
|
+
|
1381
|
+
added methods Database#__set_notice_processor, Database#as_timestamp
|
1382
|
+
fixed unneeded overhead in Database#fill_array
|
1383
|
+
(submitted by Dennis Vshivkov)
|
1384
|
+
|
1385
|
+
2003-09-14 09:35 Michael Neumann <mneumann@ntecs.de>
|
1386
|
+
|
1387
|
+
Changed:
|
1388
|
+
ext/dbd_sqlite/SQLite.c (1.8), "Exp", lines: +2 -2
|
1389
|
+
|
1390
|
+
add timezone UTC to format (MoonWolf)
|
1391
|
+
|
1392
|
+
2003-09-11 20:57 Michael Neumann <mneumann@ntecs.de>
|
1393
|
+
|
1394
|
+
Changed:
|
1395
|
+
lib/dbi/dbi.rb (1.40), "Exp", lines: +3 -2
|
1396
|
+
|
1397
|
+
fixed warning (due to method redefinition)
|
1398
|
+
|
1399
|
+
2003-09-11 16:10 Michael Neumann <mneumann@ntecs.de>
|
1400
|
+
|
1401
|
+
Changed:
|
1402
|
+
doc/index.rd (1.32), "Exp", lines: +3 -1
|
1403
|
+
|
1404
|
+
added contributor
|
1405
|
+
|
1406
|
+
2003-09-11 16:08 Michael Neumann <mneumann@ntecs.de>
|
1407
|
+
|
1408
|
+
Changed:
|
1409
|
+
lib/dbd_db2/DB2.rb (1.7), "Exp", lines: +90 -41
|
1410
|
+
|
1411
|
+
added Database#columns method (by S. Veit)
|
1412
|
+
|
1413
|
+
2003-09-07 12:44 tag dbi-0-0-21
|
1414
|
+
|
1415
|
+
2003-09-07 12:44 Michael Neumann <mneumann@ntecs.de>
|
1416
|
+
|
1417
|
+
Changed:
|
1418
|
+
build/USER (1.3), "Exp", lines: +2 -2
|
1419
|
+
|
1420
|
+
modified email address
|
1421
|
+
|
1422
|
+
2003-09-07 12:41 Michael Neumann <mneumann@ntecs.de>
|
1423
|
+
|
1424
|
+
Changed:
|
1425
|
+
lib/dbi/version.rb (1.7), "Exp", lines: +2 -2
|
1426
|
+
build/DBI-VERSIONS (1.6), "Exp", lines: +1 -0
|
1427
|
+
|
1428
|
+
new version
|
1429
|
+
|
1430
|
+
2003-09-07 12:40 Michael Neumann <mneumann@ntecs.de>
|
1431
|
+
|
1432
|
+
Changed:
|
1433
|
+
build/package.sh (1.7), "Exp", lines: +7 -0
|
1434
|
+
|
1435
|
+
added further dialog
|
1436
|
+
|
1437
|
+
2003-09-07 12:36 Michael Neumann <mneumann@ntecs.de>
|
1438
|
+
|
1439
|
+
Added:
|
1440
|
+
build/test.rb (1.1)
|
1441
|
+
lib/dbi/test/require_dispatch.rb (1.1)
|
1442
|
+
Changed:
|
1443
|
+
lib/dbi/row.rb (1.8), "Exp", lines: +3 -1
|
1444
|
+
lib/dbi/test/testrow.rb (1.5), "Exp", lines: +13 -0
|
1445
|
+
lib/dbi/test/testsqlbind.rb (1.9), "Exp", lines: +21 -2
|
1446
|
+
lib/dbi/test/testsqlcoerce.rb (1.3), "Exp", lines: +3 -2
|
1447
|
+
lib/dbi/test/testsqlquote.rb (1.6), "Exp", lines: +2 -1
|
1448
|
+
|
1449
|
+
* fixed DBI::Row.dup bug that occures in Ruby 1.8.
|
1450
|
+
* added tests for this and the SQL parse bug (/)
|
1451
|
+
|
1452
|
+
2003-06-10 21:40 Michael Neumann <mneumann@ntecs.de>
|
1453
|
+
|
1454
|
+
Changed:
|
1455
|
+
lib/dbi/sql.rb (1.16), "Exp", lines: +2 -1
|
1456
|
+
lib/dbi/test/testsqlbind.rb (1.8), "Exp", lines: +7 -0
|
1457
|
+
|
1458
|
+
fixed SQL tokenizer bug: single slashes are preserved
|
1459
|
+
|
1460
|
+
2003-06-06 10:54 tag dbi-0-0-20
|
1461
|
+
|
1462
|
+
2003-06-06 10:54 Michael Neumann <mneumann@ntecs.de>
|
1463
|
+
|
1464
|
+
Changed:
|
1465
|
+
build/DBI-VERSIONS (1.5), "Exp", lines: +1 -0
|
1466
|
+
lib/dbi/version.rb (1.6), "Exp", lines: +2 -2
|
1467
|
+
|
1468
|
+
new version
|
1469
|
+
|
1470
|
+
2003-06-06 10:48 Michael Neumann <mneumann@ntecs.de>
|
1471
|
+
|
1472
|
+
Changed:
|
1473
|
+
doc/index.rd (1.31), "Exp", lines: +5 -2
|
1474
|
+
|
1475
|
+
contributors added
|
1476
|
+
|
1477
|
+
2003-06-03 18:46 Michael Neumann <mneumann@ntecs.de>
|
1478
|
+
|
1479
|
+
Changed:
|
1480
|
+
lib/dbi/utils.rb (1.12), "Exp", lines: +4 -3
|
1481
|
+
|
1482
|
+
TableFormatter: convert false to "false", not "NULL" (MoonWolf)
|
1483
|
+
|
1484
|
+
2003-06-03 18:42 Michael Neumann <mneumann@ntecs.de>
|
1485
|
+
|
1486
|
+
Changed:
|
1487
|
+
ext/dbd_sqlite/SQLite.c (1.7), "Exp", lines: +62 -1
|
1488
|
+
|
1489
|
+
Database#columns method added (MoonWolf)
|
1490
|
+
|
1491
|
+
2003-05-31 15:52 Michael Neumann <mneumann@ntecs.de>
|
1492
|
+
|
1493
|
+
Changed:
|
1494
|
+
lib/dbi/utils.rb (1.11), "Exp", lines: +2 -2
|
1495
|
+
|
1496
|
+
fixed quoting bug ('\"' should be '"') in textconv (Brian Candler)
|
1497
|
+
|
1498
|
+
2003-05-18 20:18 Michael Neumann <mneumann@ntecs.de>
|
1499
|
+
|
1500
|
+
Changed:
|
1501
|
+
lib/dbd_pg/Pg.rb (1.32), "Exp", lines: +141 -24
|
1502
|
+
|
1503
|
+
applied array patches by Oliver M. Bolzer (DBD::Pg can now handle Postgres arrays)
|
1504
|
+
|
1505
|
+
2003-05-16 09:50 Michael Neumann <mneumann@ntecs.de>
|
1506
|
+
|
1507
|
+
Changed:
|
1508
|
+
doc/index.rd (1.30), "Exp", lines: +12 -2
|
1509
|
+
|
1510
|
+
new contributors; link to OCI8 DBD
|
1511
|
+
|
1512
|
+
2003-05-16 09:44 Michael Neumann <mneumann@ntecs.de>
|
1513
|
+
|
1514
|
+
Changed:
|
1515
|
+
lib/dbi/test/testsqlbind.rb (1.7), "Exp", lines: +12 -1
|
1516
|
+
|
1517
|
+
added new test cases for "-" bug
|
1518
|
+
|
1519
|
+
2003-05-16 09:43 Michael Neumann <mneumann@ntecs.de>
|
1520
|
+
|
1521
|
+
Changed:
|
1522
|
+
lib/dbi/test/testrow.rb (1.4), "Exp", lines: +1 -1
|
1523
|
+
lib/dbi/test/testsqlcoerce.rb (1.2), "Exp", lines: +1 -1
|
1524
|
+
lib/dbi/test/testsqlquote.rb (1.5), "Exp", lines: +1 -1
|
1525
|
+
|
1526
|
+
verbose mode
|
1527
|
+
|
1528
|
+
2003-05-16 09:43 Michael Neumann <mneumann@ntecs.de>
|
1529
|
+
|
1530
|
+
Changed:
|
1531
|
+
lib/dbi/sql.rb (1.15), "Exp", lines: +2 -1
|
1532
|
+
|
1533
|
+
bug fixed: "SELECT 1 - 3" was incorrectly transformed into "SELECT 1 3"
|
1534
|
+
|
1535
|
+
2003-05-14 19:52 Michael Neumann <mneumann@ntecs.de>
|
1536
|
+
|
1537
|
+
Added:
|
1538
|
+
ext/dbd_sqlite/test/segfault-bug.rb (1.1)
|
1539
|
+
Changed:
|
1540
|
+
ext/dbd_sqlite/SQLite.c (1.6), "Exp", lines: +2 -2
|
1541
|
+
|
1542
|
+
fixed bug: Prepared statement is executed twice: once with no match, once with
|
1543
|
+
a match. The second case fails and segfaults.
|
1544
|
+
|
1545
|
+
2003-05-14 18:36 Michael Neumann <mneumann@ntecs.de>
|
1546
|
+
|
1547
|
+
Added:
|
1548
|
+
ext/dbd_sqlite/test/test.rb (1.1)
|
1549
|
+
Changed:
|
1550
|
+
ext/dbd_sqlite/SQLite.c (1.5), "Exp", lines: +33 -6
|
1551
|
+
|
1552
|
+
Patch by <moonwolf@moonwolf.com>:
|
1553
|
+
* fix Row Processed Count(sqlite_changes() function)
|
1554
|
+
* fix DBI::Timestamp quote format for Timestamp sorting
|
1555
|
+
before '2003-2-13 1.2.3.0' => after '2003-02-13 01:02:03'
|
1556
|
+
|
1557
|
+
2003-05-11 15:29 Michael Neumann <mneumann@ntecs.de>
|
1558
|
+
|
1559
|
+
Changed:
|
1560
|
+
lib/dbd_pg/Pg.rb (1.31), "Exp", lines: +25 -18
|
1561
|
+
|
1562
|
+
added NonBlocking execution mode
|
1563
|
+
|
1564
|
+
2003-05-11 15:27 Michael Neumann <mneumann@ntecs.de>
|
1565
|
+
|
1566
|
+
Changed:
|
1567
|
+
lib/dbi/dbi.rb (1.39), "Exp", lines: +13 -5
|
1568
|
+
|
1569
|
+
class Timestamp:
|
1570
|
+
- fraction nil by default
|
1571
|
+
- fractions may be of type float (as well as integer)
|
1572
|
+
- #to_s do not show fraction if it's nil
|
1573
|
+
|
1574
|
+
2003-05-09 19:54 Michael Neumann <mneumann@ntecs.de>
|
1575
|
+
|
1576
|
+
Changed:
|
1577
|
+
lib/dbi/dbi.rb (1.38), "Exp", lines: +5 -5
|
1578
|
+
|
1579
|
+
zero-pad date/time/timestamps (classes Date/Time/Timestamp method to_s)
|
1580
|
+
|
1581
|
+
2003-04-27 19:18 Michael Neumann <mneumann@ntecs.de>
|
1582
|
+
|
1583
|
+
Changed:
|
1584
|
+
build/package.sh (1.6), "Exp", lines: +1 -1
|
1585
|
+
|
1586
|
+
fixed RAA entry update address
|
1587
|
+
|
1588
|
+
2003-04-27 18:51 tag dbi-0-0-19
|
1589
|
+
|
1590
|
+
2003-04-27 18:51 Michael Neumann <mneumann@ntecs.de>
|
1591
|
+
|
1592
|
+
Changed:
|
1593
|
+
build/DBI-VERSIONS (1.4), "Exp", lines: +1 -0
|
1594
|
+
build/USER (1.2), "Exp", lines: +1 -0
|
1595
|
+
lib/dbi/version.rb (1.5), "Exp", lines: +2 -2
|
1596
|
+
|
1597
|
+
new version
|
1598
|
+
|
1599
|
+
2003-04-27 17:42 Michael Neumann <mneumann@ntecs.de>
|
1600
|
+
|
1601
|
+
Changed:
|
1602
|
+
lib/dbi/dbi.rb (1.37), "Exp", lines: +2 -2
|
1603
|
+
|
1604
|
+
bug fix in class DBI::Time (wrong named variable)
|
1605
|
+
|
1606
|
+
2003-04-27 17:40 Michael Neumann <mneumann@ntecs.de>
|
1607
|
+
|
1608
|
+
Changed:
|
1609
|
+
doc/index.rd (1.29), "Exp", lines: +4 -1
|
1610
|
+
|
1611
|
+
new contributor
|
1612
|
+
|
1613
|
+
2003-04-27 17:37 Michael Neumann <mneumann@ntecs.de>
|
1614
|
+
|
1615
|
+
Changed:
|
1616
|
+
lib/dbi/sql.rb (1.14), "Exp", lines: +4 -4
|
1617
|
+
|
1618
|
+
Fixed bug in DBI::SQL::BasicQuote::Coerce#as_time
|
1619
|
+
Mysql time columns (like "13:32:33") could not be converted into DBI::Time objects
|
1620
|
+
(thanks to Tim Bates)
|
1621
|
+
|
1622
|
+
2003-04-21 18:09 eliask
|
1623
|
+
|
1624
|
+
Changed:
|
1625
|
+
lib/dbd_db2/DB2.rb (1.6.4.2), "Exp", lines: +34 -3
|
1626
|
+
|
1627
|
+
DB2 driver support for columns(table)
|
1628
|
+
|
1629
|
+
2003-04-02 15:42 Paul Dubois
|
1630
|
+
|
1631
|
+
Changed:
|
1632
|
+
lib/dbd_mysql/Mysql.rb (1.21), "Exp", lines: +4 -4
|
1633
|
+
|
1634
|
+
|
1635
|
+
Modify transaction support to use self.do rather than @handler.query
|
1636
|
+
so that query execution is routed through the mutex.
|
1637
|
+
|
1638
|
+
2003-02-08 02:26 Paul Dubois
|
1639
|
+
|
1640
|
+
Changed:
|
1641
|
+
lib/dbi/dbi.rb (1.36), "Exp", lines: +19 -2
|
1642
|
+
|
1643
|
+
Fix bug in case insensitive driver name lookup on case insensitive filesystems
|
1644
|
+
|
1645
|
+
2003-02-08 02:03 Paul Dubois
|
1646
|
+
|
1647
|
+
Changed:
|
1648
|
+
lib/dbd_mysql/Mysql.rb (1.20), "Exp", lines: +40 -3
|
1649
|
+
|
1650
|
+
Add transaction support: commit and rollback methods, AutoCommit database handle attribute
|
1651
|
+
|
1652
|
+
2003-02-08 01:46 Paul Dubois
|
1653
|
+
|
1654
|
+
Changed:
|
1655
|
+
lib/dbd_mysql/Mysql.rb (1.19), "Exp", lines: +10 -10
|
1656
|
+
|
1657
|
+
return MySQL error number on exceptions, not just error message
|
1658
|
+
|
1659
|
+
2003-02-08 01:37 Paul Dubois
|
1660
|
+
|
1661
|
+
Changed:
|
1662
|
+
lib/dbd_mysql/Mysql.rb (1.18), "Exp", lines: +5 -1
|
1663
|
+
|
1664
|
+
port and flag connection parameters must be passed as numbers
|
1665
|
+
|
1666
|
+
2003-02-08 00:37 Paul Dubois
|
1667
|
+
|
1668
|
+
Changed:
|
1669
|
+
lib/dbd_mysql/Mysql.rb (1.17), "Exp", lines: +4 -4
|
1670
|
+
|
1671
|
+
Do not force user to provide database name when connecting
|
1672
|
+
|
1673
|
+
2003-02-01 13:51 Michael Neumann <mneumann@ntecs.de>
|
1674
|
+
|
1675
|
+
Changed:
|
1676
|
+
lib/dbi/test/testsqlbind.rb (1.6), "Exp", lines: +6 -0
|
1677
|
+
|
1678
|
+
added comment test
|
1679
|
+
|
1680
|
+
2003-02-01 13:45 Michael Neumann <mneumann@ntecs.de>
|
1681
|
+
|
1682
|
+
Changed:
|
1683
|
+
lib/dbi/sql.rb (1.13), "Exp", lines: +20 -5
|
1684
|
+
|
1685
|
+
method BasicBind#tokens: added support for C-style (non-nesting) and Ada/SQL92-style comments
|
1686
|
+
|
1687
|
+
2003-01-22 10:55 Michael Neumann <mneumann@ntecs.de>
|
1688
|
+
|
1689
|
+
Changed:
|
1690
|
+
doc/index.rd (1.27), "Exp", lines: +6 -1
|
1691
|
+
|
1692
|
+
added contributor, added Articles section
|
1693
|
+
|
1694
|
+
2003-01-22 10:52 Michael Neumann <mneumann@ntecs.de>
|
1695
|
+
|
1696
|
+
Changed:
|
1697
|
+
doc/DBD_SPEC (1.3), "Exp", lines: +2 -2
|
1698
|
+
doc/DBI_SPEC (1.3), "Exp", lines: +2 -2
|
1699
|
+
|
1700
|
+
fixed wrong email address
|
1701
|
+
|
1702
|
+
2003-01-22 10:45 Michael Neumann <mneumann@ntecs.de>
|
1703
|
+
|
1704
|
+
Changed:
|
1705
|
+
doc/DBD_SPEC (1.2), "Exp", lines: +107 -103
|
1706
|
+
doc/DBI_SPEC (1.2), "Exp", lines: +95 -92
|
1707
|
+
|
1708
|
+
Fix typos and formatting (by Paul DuBois).
|
1709
|
+
|
1710
|
+
2002-12-28 14:36 eliask
|
1711
|
+
|
1712
|
+
Changed:
|
1713
|
+
lib/dbd_db2/DB2.rb (1.6.4.1), "Exp", lines: +216 -55
|
1714
|
+
|
1715
|
+
experimental support for BLOBs via SQLBindParameter
|
1716
|
+
|
1717
|
+
2002-10-28 11:18 Michael Neumann <mneumann@ntecs.de>
|
1718
|
+
|
1719
|
+
Changed:
|
1720
|
+
build/package.sh (1.5), "Exp", lines: +0 -3
|
1721
|
+
|
1722
|
+
# Removed the removing of empty dirs. Use cvs -P option (implicit) instead.
|
1723
|
+
|
1724
|
+
2002-10-28 11:05 Michael Neumann <mneumann@ntecs.de>
|
1725
|
+
|
1726
|
+
Changed:
|
1727
|
+
build/Makefile (1.4), "Exp", lines: +1 -1
|
1728
|
+
build/package.sh (1.4), "Exp", lines: +1 -1
|
1729
|
+
|
1730
|
+
*
|
1731
|
+
|
1732
|
+
2002-10-25 12:48 Michael Neumann <mneumann@ntecs.de>
|
1733
|
+
|
1734
|
+
Changed:
|
1735
|
+
lib/dbd_pg/Pg.rb (1.30), "Exp", lines: +2 -2
|
1736
|
+
|
1737
|
+
rollback transactions on disconnect
|
1738
|
+
|
1739
|
+
2002-10-22 15:28 tag dbi-0-0-18
|
1740
|
+
|
1741
|
+
2002-10-22 15:28 Michael Neumann <mneumann@ntecs.de>
|
1742
|
+
|
1743
|
+
Changed:
|
1744
|
+
build/DBI-VERSIONS (1.3), "Exp", lines: +1 -0
|
1745
|
+
|
1746
|
+
*
|
1747
|
+
|
1748
|
+
2002-10-22 15:25 Michael Neumann <mneumann@ntecs.de>
|
1749
|
+
|
1750
|
+
Changed:
|
1751
|
+
doc/index.rd (1.26), "Exp", lines: +3 -1
|
1752
|
+
|
1753
|
+
contributor added
|
1754
|
+
|
1755
|
+
2002-10-22 15:15 Michael Neumann <mneumann@ntecs.de>
|
1756
|
+
|
1757
|
+
Changed:
|
1758
|
+
lib/dbi/trace.rb (1.3), "Exp", lines: +2 -1
|
1759
|
+
|
1760
|
+
remove warnings
|
1761
|
+
|
1762
|
+
2002-10-22 15:06 Michael Neumann <mneumann@ntecs.de>
|
1763
|
+
|
1764
|
+
Changed:
|
1765
|
+
lib/dbi/dbi.rb (1.35), "Exp", lines: +21 -12
|
1766
|
+
|
1767
|
+
Driver URLs are now case-sensitive when in SAFE mode >= 1. This prevent a security error.
|
1768
|
+
|
1769
|
+
2002-10-22 14:53 Michael Neumann <mneumann@ntecs.de>
|
1770
|
+
|
1771
|
+
Changed:
|
1772
|
+
lib/dbd_pg/Pg.rb (1.29), "Exp", lines: +70 -10
|
1773
|
+
|
1774
|
+
reverted to old transaction handling schema; removed usage of SET AUTOCOMMIT TO ON|OFF.
|
1775
|
+
|
1776
|
+
2002-10-22 14:00 Michael Neumann <mneumann@ntecs.de>
|
1777
|
+
|
1778
|
+
Changed:
|
1779
|
+
lib/dbd_pg/Pg.rb (1.28), "Exp", lines: +32 -6
|
1780
|
+
|
1781
|
+
Use PostgreSQL specific quoting function (PGconn.quote) instead of default if available.
|
1782
|
+
Use PGconn.escape_bytea instead of own __escape_bytea function if available.
|
1783
|
+
|
1784
|
+
2002-10-03 10:21 Michael Neumann <mneumann@ntecs.de>
|
1785
|
+
|
1786
|
+
Changed:
|
1787
|
+
build/package.sh (1.3), "Exp", lines: +2 -2
|
1788
|
+
|
1789
|
+
fixed bug
|
1790
|
+
|
1791
|
+
2002-10-03 09:53 tag dbi-0-0-17
|
1792
|
+
|
1793
|
+
2002-10-03 09:53 Michael Neumann <mneumann@ntecs.de>
|
1794
|
+
|
1795
|
+
Changed:
|
1796
|
+
lib/dbi/version.rb (1.3), "Exp", lines: +2 -2
|
1797
|
+
|
1798
|
+
new version
|
1799
|
+
|
1800
|
+
2002-10-03 09:49 Michael Neumann <mneumann@ntecs.de>
|
1801
|
+
|
1802
|
+
Added:
|
1803
|
+
build/package.sh (1.1)
|
1804
|
+
|
1805
|
+
initial creation; handles all release steps
|
1806
|
+
|
1807
|
+
2002-10-02 18:56 Michael Neumann <mneumann@ntecs.de>
|
1808
|
+
|
1809
|
+
Deleted:
|
1810
|
+
doc/create_html (1.2)
|
1811
|
+
|
1812
|
+
removed
|
1813
|
+
|
1814
|
+
2002-10-02 18:26 Michael Neumann <mneumann@ntecs.de>
|
1815
|
+
|
1816
|
+
Deleted:
|
1817
|
+
doc/html/index.html (1.26)
|
1818
|
+
|
1819
|
+
removed
|
1820
|
+
|
1821
|
+
2002-10-02 18:10 Michael Neumann <mneumann@ntecs.de>
|
1822
|
+
|
1823
|
+
Added:
|
1824
|
+
doc/DBD_SPEC (1.1)
|
1825
|
+
doc/DBI_SPEC (1.1)
|
1826
|
+
doc/ToDo (1.1)
|
1827
|
+
|
1828
|
+
moved from ../lib/dbi/doc
|
1829
|
+
|
1830
|
+
2002-10-02 18:04 Michael Neumann <mneumann@ntecs.de>
|
1831
|
+
|
1832
|
+
Added:
|
1833
|
+
build/DBI-VERSIONS (1.1)
|
1834
|
+
build/Makefile (1.1)
|
1835
|
+
build/USER (1.1)
|
1836
|
+
build/cl2html.sh (1.1)
|
1837
|
+
build/create_changelog.rb (1.1)
|
1838
|
+
build/cvs2cl (1.1)
|
1839
|
+
|
1840
|
+
initial import
|
1841
|
+
|
1842
|
+
2002-10-02 17:53 Michael Neumann <mneumann@ntecs.de>
|
1843
|
+
|
1844
|
+
Changed:
|
1845
|
+
setup.rb (1.3), "Exp", lines: +7 -2
|
1846
|
+
|
1847
|
+
install on debian-unstable into /usr/local/lib/site_ruby/<version> (by Brad Hilton)
|
1848
|
+
|
1849
|
+
2002-09-26 18:41 Michael Neumann <mneumann@ntecs.de>
|
1850
|
+
|
1851
|
+
Changed:
|
1852
|
+
doc/index.rd (1.24), "Exp", lines: +3 -1
|
1853
|
+
|
1854
|
+
*
|
1855
|
+
|
1856
|
+
2002-09-26 18:37 Michael Neumann <mneumann@ntecs.de>
|
1857
|
+
|
1858
|
+
Changed:
|
1859
|
+
lib/dbd_mysql/Mysql.rb (1.16), "Exp", lines: +40 -8
|
1860
|
+
|
1861
|
+
add support for coercing column values (patch by Brad Hilton)
|
1862
|
+
|
1863
|
+
2002-09-26 13:40 Michael Neumann <mneumann@ntecs.de>
|
1864
|
+
|
1865
|
+
Changed:
|
1866
|
+
lib/dbd_pg/Pg.rb (1.27), "Exp", lines: +9 -14
|
1867
|
+
|
1868
|
+
removed method send_sql and inlined it's code instead (little speed improvement)
|
1869
|
+
|
1870
|
+
2002-09-26 13:32 Michael Neumann <mneumann@ntecs.de>
|
1871
|
+
|
1872
|
+
Changed:
|
1873
|
+
lib/dbd_pg/Pg.rb (1.26), "Exp", lines: +196 -196
|
1874
|
+
|
1875
|
+
converted tabs to spaces
|
1876
|
+
|
1877
|
+
2002-09-26 13:28 Michael Neumann <mneumann@ntecs.de>
|
1878
|
+
|
1879
|
+
Changed:
|
1880
|
+
lib/dbd_pg/Pg.rb (1.25), "Exp", lines: +22 -55
|
1881
|
+
|
1882
|
+
rewritten transaction handling (uses now Postgres' "SET AUTOCOMMIT ON|OFF")
|
1883
|
+
|
1884
|
+
2002-09-13 09:10 Michael Neumann <mneumann@ntecs.de>
|
1885
|
+
|
1886
|
+
Changed:
|
1887
|
+
lib/dbd_pg/Pg.rb (1.24), "Exp", lines: +13 -5
|
1888
|
+
|
1889
|
+
fix quoting backslashes bug (Brad Hilton)
|
1890
|
+
|
1891
|
+
2002-08-02 13:59 Michael Neumann <mneumann@ntecs.de>
|
1892
|
+
|
1893
|
+
Changed:
|
1894
|
+
contrib/dbrc/dbrc.rb (1.2), "Exp", lines: +18 -1
|
1895
|
+
|
1896
|
+
added dsn method, minor doc additions
|
1897
|
+
|
1898
|
+
2002-08-01 19:00 Michael Neumann <mneumann@ntecs.de>
|
1899
|
+
|
1900
|
+
Changed:
|
1901
|
+
lib/dbi/dbi.rb (1.34), "Exp", lines: +37 -16
|
1902
|
+
|
1903
|
+
added Date#to_time/to_date/mday/mday= Time#to_time Timestamp#mday/mday= (Dave Thomas)
|
1904
|
+
|
1905
|
+
2002-07-26 20:43 Michael Neumann <mneumann@ntecs.de>
|
1906
|
+
|
1907
|
+
Changed:
|
1908
|
+
lib/dbi/dbi.rb (1.33), "Exp", lines: +3 -3
|
1909
|
+
|
1910
|
+
Time/Date => ::Time/::Date
|
1911
|
+
|
1912
|
+
2002-07-26 20:41 Michael Neumann <mneumann@ntecs.de>
|
1913
|
+
|
1914
|
+
Changed:
|
1915
|
+
setup.rb (1.2), "Exp", lines: +1 -0
|
1916
|
+
|
1917
|
+
skip CVS directories (Dave Thomas)
|
1918
|
+
|
1919
|
+
2002-07-26 18:14 Michael Neumann <mneumann@ntecs.de>
|
1920
|
+
|
1921
|
+
Changed:
|
1922
|
+
doc/html/index.html (1.25), "Exp", lines: +23 -15
|
1923
|
+
|
1924
|
+
*
|
1925
|
+
|
1926
|
+
2002-07-26 18:13 Michael Neumann <mneumann@ntecs.de>
|
1927
|
+
|
1928
|
+
Changed:
|
1929
|
+
doc/index.rd (1.23), "Exp", lines: +5 -1
|
1930
|
+
|
1931
|
+
added contributors
|
1932
|
+
|
1933
|
+
2002-07-26 18:12 Michael Neumann <mneumann@ntecs.de>
|
1934
|
+
|
1935
|
+
Added:
|
1936
|
+
contrib/dbrc/README (1.1)
|
1937
|
+
contrib/dbrc/dbrc.rb (1.1)
|
1938
|
+
|
1939
|
+
initial import
|
1940
|
+
|
1941
|
+
2002-07-26 17:56 Michael Neumann <mneumann@ntecs.de>
|
1942
|
+
|
1943
|
+
Changed:
|
1944
|
+
lib/dbd_pg/Pg.rb (1.23), "Exp", lines: +15 -11
|
1945
|
+
|
1946
|
+
enhanced conversion: default is to_str, added timestamp (with/without timezone)
|
1947
|
+
|
1948
|
+
2002-07-26 17:51 Michael Neumann <mneumann@ntecs.de>
|
1949
|
+
|
1950
|
+
Changed:
|
1951
|
+
lib/dbi/dbi.rb (1.32), "Exp", lines: +18 -4
|
1952
|
+
|
1953
|
+
added methods Timestamp#to_time/to_date (Dave Thomas)
|
1954
|
+
|
1955
|
+
2002-07-03 20:09 tag dbi-0-0-16
|
1956
|
+
|
1957
|
+
2002-07-03 20:09 Michael Neumann <mneumann@ntecs.de>
|
1958
|
+
|
1959
|
+
Changed:
|
1960
|
+
lib/dbi/version.rb (1.2), "Exp", lines: +2 -2
|
1961
|
+
|
1962
|
+
new version
|
1963
|
+
|
1964
|
+
2002-07-03 20:08 Michael Neumann <mneumann@ntecs.de>
|
1965
|
+
|
1966
|
+
Changed:
|
1967
|
+
doc/html/index.html (1.24), "Exp", lines: +19 -15
|
1968
|
+
|
1969
|
+
*
|
1970
|
+
|
1971
|
+
2002-07-03 20:07 Michael Neumann <mneumann@ntecs.de>
|
1972
|
+
|
1973
|
+
Changed:
|
1974
|
+
doc/index.rd (1.22), "Exp", lines: +3 -2
|
1975
|
+
|
1976
|
+
added contributor
|
1977
|
+
|
1978
|
+
2002-07-03 19:56 Michael Neumann <mneumann@ntecs.de>
|
1979
|
+
|
1980
|
+
Changed:
|
1981
|
+
lib/dbd_pg/Pg.rb (1.22), "Exp", lines: +37 -8
|
1982
|
+
|
1983
|
+
added Statement#fetch_scroll (patch by Stephen Davies)
|
1984
|
+
|
1985
|
+
2002-07-03 19:24 Michael Neumann <mneumann@ntecs.de>
|
1986
|
+
|
1987
|
+
Changed:
|
1988
|
+
lib/dbi/dbi.rb (1.31), "Exp", lines: +10 -1
|
1989
|
+
|
1990
|
+
Added StatementHandle#[] and #[]=. Updated DBI and DBD specs.
|
1991
|
+
|
1992
|
+
2002-07-03 19:22 Michael Neumann <mneumann@ntecs.de>
|
1993
|
+
|
1994
|
+
Changed:
|
1995
|
+
lib/dbd_pg/Pg.rb (1.21), "Exp", lines: +20 -2
|
1996
|
+
|
1997
|
+
Fixed semantic of method Statement#rows (affects also Database#do):
|
1998
|
+
Now returns the Row Processed Count instead of the number of rows in the result.
|
1999
|
+
The old behaviour is still available through method Statement#['pg_row_count'].
|
2000
|
+
|
2001
|
+
2002-07-03 16:51 Michael Neumann <mneumann@ntecs.de>
|
2002
|
+
|
2003
|
+
Changed:
|
2004
|
+
doc/html/index.html (1.23), "Exp", lines: +1 -1
|
2005
|
+
|
2006
|
+
*
|
2007
|
+
|
2008
|
+
2002-07-03 16:48 Michael Neumann <mneumann@ntecs.de>
|
2009
|
+
|
2010
|
+
Changed:
|
2011
|
+
bin/commandline/sqlsh.rb (1.3), "Exp", lines: +27 -2
|
2012
|
+
bin/proxyserver/proxyserver.rb (1.3), "Exp", lines: +28 -2
|
2013
|
+
doc/index.rd (1.21), "Exp", lines: +29 -18
|
2014
|
+
doc/html/index.html (1.22), "Exp", lines: +46 -28
|
2015
|
+
ext/dbd_sqlite/SQLite.c (1.4), "Exp", lines: +28 -7
|
2016
|
+
lib/dbd_ado/ADO.rb (1.6), "Exp", lines: +27 -20
|
2017
|
+
lib/dbd_db2/DB2.rb (1.6), "Exp", lines: +27 -10
|
2018
|
+
lib/dbd_interbase/InterBase.rb (1.4), "Exp", lines: +27 -20
|
2019
|
+
lib/dbd_msql/Msql.rb (1.2), "Exp", lines: +27 -18
|
2020
|
+
lib/dbd_mysql/Mysql.rb (1.15), "Exp", lines: +27 -18
|
2021
|
+
lib/dbd_odbc/ODBC.rb (1.8), "Exp", lines: +27 -20
|
2022
|
+
lib/dbd_oracle/Oracle.rb (1.6), "Exp", lines: +29 -23
|
2023
|
+
lib/dbd_pg/Pg.rb (1.20), "Exp", lines: +29 -1
|
2024
|
+
lib/dbd_proxy/Proxy.rb (1.8), "Exp", lines: +27 -19
|
2025
|
+
lib/dbd_sqlrelay/SQLRelay.rb (1.4), "Exp", lines: +27 -19
|
2026
|
+
lib/dbi/dbi.rb (1.30), "Exp", lines: +28 -18
|
2027
|
+
LICENSE (1.2), "Exp", lines: +22 -339
|
2028
|
+
|
2029
|
+
license changed from GNU GPL to BSD
|
2030
|
+
|
2031
|
+
2002-06-13 15:45 Michael Neumann <mneumann@ntecs.de>
|
2032
|
+
|
2033
|
+
Added:
|
2034
|
+
lib/dbd_pg/test/test_bytea.rb (1.1)
|
2035
|
+
|
2036
|
+
initial creation
|
2037
|
+
|
2038
|
+
2002-06-13 15:45 Michael Neumann <mneumann@ntecs.de>
|
2039
|
+
|
2040
|
+
Changed:
|
2041
|
+
lib/dbd_pg/Pg.rb (1.19), "Exp", lines: +35 -4
|
2042
|
+
|
2043
|
+
added method Database#__encode_bytea; decode values of type bytea to string
|
2044
|
+
|
2045
|
+
2002-05-21 18:52 tag dbi-0-0-15
|
2046
|
+
|
2047
|
+
2002-05-21 18:52 Michael Neumann <mneumann@ntecs.de>
|
2048
|
+
|
2049
|
+
Changed:
|
2050
|
+
lib/dbd_mysql/Mysql.rb (1.14), "Exp", lines: +9 -4
|
2051
|
+
|
2052
|
+
added driver specific method Database#__insert_id
|
2053
|
+
|
2054
|
+
2002-05-21 18:41 Michael Neumann <mneumann@ntecs.de>
|
2055
|
+
|
2056
|
+
Changed:
|
2057
|
+
lib/dbi/dbi.rb (1.29), "Exp", lines: +2 -1
|
2058
|
+
|
2059
|
+
explicitly initialize @trace_mode and @trace_output in Handle#initialize (omits disturbing warning messages)
|
2060
|
+
|
2061
|
+
2002-05-21 18:36 Michael Neumann <mneumann@ntecs.de>
|
2062
|
+
|
2063
|
+
Added:
|
2064
|
+
examples/trace_test.rb (1.1)
|
2065
|
+
|
2066
|
+
initial import
|
2067
|
+
|
2068
|
+
2002-05-21 18:33 Michael Neumann <mneumann@ntecs.de>
|
2069
|
+
|
2070
|
+
Added:
|
2071
|
+
lib/dbi/version.rb (1.1)
|
2072
|
+
Changed:
|
2073
|
+
lib/dbi/dbi.rb (1.28), "Exp", lines: +3 -5
|
2074
|
+
|
2075
|
+
moved VERSION from dbi.rb to version.rb
|
2076
|
+
|
2077
|
+
2002-05-14 18:07 tag dbi-0-0-14
|
2078
|
+
|
2079
|
+
2002-05-14 18:07 Michael Neumann <mneumann@ntecs.de>
|
2080
|
+
|
2081
|
+
Changed:
|
2082
|
+
lib/dbi/dbi.rb (1.27), "Exp", lines: +3 -3
|
2083
|
+
|
2084
|
+
updated version
|
2085
|
+
|
2086
|
+
2002-05-14 18:03 Michael Neumann <mneumann@ntecs.de>
|
2087
|
+
|
2088
|
+
Changed:
|
2089
|
+
lib/dbd_mysql/Mysql.rb (1.13), "Exp", lines: +24 -14
|
2090
|
+
|
2091
|
+
fixed bug: method #do and #execute both set query_with_result of the same
|
2092
|
+
underlying database object. This results in errors if you mix both method
|
2093
|
+
calls (not neccessarily called concurrently). Solution: Mutex.
|
2094
|
+
|
2095
|
+
2002-04-17 13:43 Michael Neumann <mneumann@ntecs.de>
|
2096
|
+
|
2097
|
+
Changed:
|
2098
|
+
doc/index.rd (1.20), "Exp", lines: +4 -2
|
2099
|
+
|
2100
|
+
added contributor
|
2101
|
+
|
2102
|
+
2002-04-17 13:38 Michael Neumann <mneumann@ntecs.de>
|
2103
|
+
|
2104
|
+
Changed:
|
2105
|
+
lib/dbd_pg/Pg.rb (1.18), "Exp", lines: +4 -3
|
2106
|
+
|
2107
|
+
cache calls to PGResult#result in class Tuples (by James F.Hranicky); which increases performance around factor 100.
|
2108
|
+
|
2109
|
+
2002-04-16 20:38 tag dbi-0-0-13
|
2110
|
+
|
2111
|
+
2002-04-16 20:38 Michael Neumann <mneumann@ntecs.de>
|
2112
|
+
|
2113
|
+
Changed:
|
2114
|
+
doc/index.rd (1.19), "Exp", lines: +6 -2
|
2115
|
+
doc/html/index.html (1.21), "Exp", lines: +20 -16
|
2116
|
+
|
2117
|
+
*
|
2118
|
+
|
2119
|
+
2002-04-16 20:25 Michael Neumann <mneumann@ntecs.de>
|
2120
|
+
|
2121
|
+
Changed:
|
2122
|
+
doc/html/index.html (1.20), "Exp", lines: +40 -99
|
2123
|
+
|
2124
|
+
*
|
2125
|
+
|
2126
|
+
2002-04-16 20:24 Michael Neumann <mneumann@ntecs.de>
|
2127
|
+
|
2128
|
+
Changed:
|
2129
|
+
doc/index.rd (1.18), "Exp", lines: +16 -44
|
2130
|
+
|
2131
|
+
updates links to sf.net
|
2132
|
+
|
2133
|
+
2002-04-16 20:24 Michael Neumann <mneumann@ntecs.de>
|
2134
|
+
|
2135
|
+
Added:
|
2136
|
+
doc/sf_logo.html (1.1)
|
2137
|
+
|
2138
|
+
initial import
|
2139
|
+
|
2140
|
+
2002-02-06 18:05 Michael Neumann <mneumann@ntecs.de>
|
2141
|
+
|
2142
|
+
Changed:
|
2143
|
+
lib/dbd_odbc/ODBC.rb (1.7), "Exp", lines: +5 -4
|
2144
|
+
|
2145
|
+
fixed bug in method columns
|
2146
|
+
|
2147
|
+
2002-02-06 17:27 Michael Neumann <mneumann@ntecs.de>
|
2148
|
+
|
2149
|
+
Changed:
|
2150
|
+
bin/proxyserver/proxyserver.rb (1.2), "Exp", lines: +5 -5
|
2151
|
+
|
2152
|
+
upgraded to DBD API 0.2
|
2153
|
+
fixed bug (checking version numbers)
|
2154
|
+
|
2155
|
+
2002-02-06 17:26 Michael Neumann <mneumann@ntecs.de>
|
2156
|
+
|
2157
|
+
Changed:
|
2158
|
+
lib/dbd_proxy/Proxy.rb (1.7), "Exp", lines: +6 -7
|
2159
|
+
|
2160
|
+
upgraded to DBD API 0.2
|
2161
|
+
|
2162
|
+
2002-02-06 14:24 Michael Neumann <mneumann@ntecs.de>
|
2163
|
+
|
2164
|
+
Changed:
|
2165
|
+
lib/dbi/sql.rb (1.12), "Exp", lines: +2 -2
|
2166
|
+
|
2167
|
+
method SQL::BasicQuote::Coerce::as_timestamp: return nil if str is empty (Sean Chittenden)
|
2168
|
+
|
2169
|
+
2002-01-04 11:54 Michael Neumann <mneumann@ntecs.de>
|
2170
|
+
|
2171
|
+
Changed:
|
2172
|
+
lib/dbi/dbi.rb (1.26), "Exp", lines: +2 -2
|
2173
|
+
|
2174
|
+
new version
|
2175
|
+
|
2176
|
+
2002-01-04 11:52 Michael Neumann <mneumann@ntecs.de>
|
2177
|
+
|
2178
|
+
Changed:
|
2179
|
+
lib/dbd_mysql/Mysql.rb (1.12), "Exp", lines: +1 -5
|
2180
|
+
lib/dbd_pg/Pg.rb (1.17), "Exp", lines: +1 -6
|
2181
|
+
|
2182
|
+
fixed bind_param bug by removing method bind_params
|
2183
|
+
|
2184
|
+
2002-01-04 11:52 Michael Neumann <mneumann@ntecs.de>
|
2185
|
+
|
2186
|
+
Changed:
|
2187
|
+
test/testdbi.rb (1.4), "Exp", lines: +13 -1
|
2188
|
+
|
2189
|
+
added test-case for bind_param bug (only in Mysql and Pg driver)
|
2190
|
+
|
2191
|
+
2002-01-02 00:54 Michael Neumann <mneumann@ntecs.de>
|
2192
|
+
|
2193
|
+
Changed:
|
2194
|
+
lib/dbd_pg/Pg.rb (1.16), "Exp", lines: +1 -5
|
2195
|
+
|
2196
|
+
removed duplicate definition for the [] accessor method (Sean Chittenden)
|
2197
|
+
|
2198
|
+
2001-12-28 14:07 tag dbi-0-0-12
|
2199
|
+
|
2200
|
+
2001-12-28 14:07 Michael Neumann <mneumann@ntecs.de>
|
2201
|
+
|
2202
|
+
Added:
|
2203
|
+
examples/xmlgen.rb (1.1)
|
2204
|
+
|
2205
|
+
initial import
|
2206
|
+
|
2207
|
+
2001-12-28 13:19 Michael Neumann <mneumann@ntecs.de>
|
2208
|
+
|
2209
|
+
Changed:
|
2210
|
+
lib/dbd_sqlrelay/SQLRelay.rb (1.3), "Exp", lines: +128 -45
|
2211
|
+
|
2212
|
+
updated version by David Muse <david.muse@zapmedia.com>
|
2213
|
+
|
2214
|
+
2001-12-28 13:05 Michael Neumann <mneumann@ntecs.de>
|
2215
|
+
|
2216
|
+
Added:
|
2217
|
+
lib/dbi/test/testsqlcoerce.rb (1.1)
|
2218
|
+
|
2219
|
+
initial creation
|
2220
|
+
|
2221
|
+
2001-12-28 10:18 Michael Neumann <mneumann@ntecs.de>
|
2222
|
+
|
2223
|
+
Changed:
|
2224
|
+
doc/html/index.html (1.19), "Exp", lines: +45 -24
|
2225
|
+
|
2226
|
+
*
|
2227
|
+
|
2228
|
+
2001-12-28 10:18 Michael Neumann <mneumann@ntecs.de>
|
2229
|
+
|
2230
|
+
Changed:
|
2231
|
+
doc/index.rd (1.17), "Exp", lines: +2 -2
|
2232
|
+
|
2233
|
+
fixed doc
|
2234
|
+
|
2235
|
+
2001-12-28 00:54 Michael Neumann <mneumann@ntecs.de>
|
2236
|
+
|
2237
|
+
Changed:
|
2238
|
+
lib/dbi/sql.rb (1.11), "Exp", lines: +6 -1
|
2239
|
+
|
2240
|
+
DBI::SQL::BasicQuote::Coerce: don't try to convert nil; instead return nil in this case
|
2241
|
+
|
2242
|
+
2001-12-14 15:16 Michael Neumann <mneumann@ntecs.de>
|
2243
|
+
|
2244
|
+
Changed:
|
2245
|
+
doc/index.rd (1.16), "Exp", lines: +17 -4
|
2246
|
+
|
2247
|
+
fixed doc-bug
|
2248
|
+
|
2249
|
+
2001-12-02 17:23 Michael Neumann <mneumann@ntecs.de>
|
2250
|
+
|
2251
|
+
Changed:
|
2252
|
+
lib/dbd_pg/Pg.rb (1.15), "Exp", lines: +8 -4
|
2253
|
+
|
2254
|
+
fixed bug (displayed wrong default values) in method columns
|
2255
|
+
|
2256
|
+
2001-11-26 00:12 Michael Neumann <mneumann@ntecs.de>
|
2257
|
+
|
2258
|
+
Changed:
|
2259
|
+
lib/dbd_oracle/Oracle.rb (1.5), "Exp", lines: +95 -7
|
2260
|
+
|
2261
|
+
included Jim Menards columns methods
|
2262
|
+
|
2263
|
+
2001-11-25 23:26 Michael Neumann <mneumann@ntecs.de>
|
2264
|
+
|
2265
|
+
Changed:
|
2266
|
+
lib/dbd_oracle/Oracle.rb (1.4), "Exp", lines: +17 -3
|
2267
|
+
|
2268
|
+
implemented ?-style parameter markers
|
2269
|
+
|
2270
|
+
2001-11-25 23:25 Michael Neumann <mneumann@ntecs.de>
|
2271
|
+
|
2272
|
+
Changed:
|
2273
|
+
lib/dbi/sql.rb (1.10), "Exp", lines: +4 -2
|
2274
|
+
|
2275
|
+
added attribute accessor for unbound in class PreparedStatement
|
2276
|
+
|
2277
|
+
2001-11-22 15:20 Michael Neumann <mneumann@ntecs.de>
|
2278
|
+
|
2279
|
+
Changed:
|
2280
|
+
lib/dbd_pg/Pg.rb (1.14), "Exp", lines: +16 -8
|
2281
|
+
|
2282
|
+
added method bind_params
|
2283
|
+
do no more call commit/rollback if not in transaction
|
2284
|
+
use class SQL::PreparedStatement
|
2285
|
+
|
2286
|
+
2001-11-22 14:27 Michael Neumann <mneumann@ntecs.de>
|
2287
|
+
|
2288
|
+
Changed:
|
2289
|
+
ext/dbd_sqlite/README (1.2), "Exp", lines: +4 -0
|
2290
|
+
ext/dbd_sqlite/SQLite.c (1.3), "Exp", lines: +48 -38
|
2291
|
+
ext/dbd_sqlite/extconf.rb (1.3), "Exp", lines: +4 -1
|
2292
|
+
|
2293
|
+
added type conversion
|
2294
|
+
|
2295
|
+
2001-11-22 14:27 Michael Neumann <mneumann@ntecs.de>
|
2296
|
+
|
2297
|
+
Changed:
|
2298
|
+
bin/PATHCONV (1.2), "Exp", lines: +1 -0
|
2299
|
+
|
2300
|
+
added proxyserver
|
2301
|
+
|
2302
|
+
2001-11-22 14:26 Michael Neumann <mneumann@ntecs.de>
|
2303
|
+
|
2304
|
+
Changed:
|
2305
|
+
lib/dbi/utils.rb (1.10), "Exp", lines: +11 -11
|
2306
|
+
ext/dbd_sqlite/extconf.rb (1.4), "Exp", lines: +1 -4
|
2307
|
+
|
2308
|
+
*
|
2309
|
+
|
2310
|
+
2001-11-22 14:25 Michael Neumann <mneumann@ntecs.de>
|
2311
|
+
|
2312
|
+
Changed:
|
2313
|
+
lib/dbi/test/testsqlbind.rb (1.5), "Exp", lines: +54 -0
|
2314
|
+
|
2315
|
+
added test for class PreparedStatement
|
2316
|
+
|
2317
|
+
2001-11-22 14:25 Michael Neumann <mneumann@ntecs.de>
|
2318
|
+
|
2319
|
+
Changed:
|
2320
|
+
lib/dbi/dbi.rb (1.25), "Exp", lines: +31 -8
|
2321
|
+
|
2322
|
+
added constant SQL_TYPE_NAMES, for SQL_XXX constant to SQL type name mapping
|
2323
|
+
|
2324
|
+
2001-11-22 14:23 Michael Neumann <mneumann@ntecs.de>
|
2325
|
+
|
2326
|
+
Changed:
|
2327
|
+
lib/dbi/sql.rb (1.9), "Exp", lines: +60 -2
|
2328
|
+
|
2329
|
+
added class PreparedStatement
|
2330
|
+
|
2331
|
+
2001-11-22 14:21 Michael Neumann <mneumann@ntecs.de>
|
2332
|
+
|
2333
|
+
Changed:
|
2334
|
+
lib/dbd_odbc/ODBC.rb (1.6), "Exp", lines: +48 -32
|
2335
|
+
|
2336
|
+
fixed tables
|
2337
|
+
added ping, columns
|
2338
|
+
extended column_info
|
2339
|
+
|
2340
|
+
2001-11-22 14:19 Michael Neumann <mneumann@ntecs.de>
|
2341
|
+
|
2342
|
+
Changed:
|
2343
|
+
lib/dbd_mysql/Mysql.rb (1.11), "Exp", lines: +13 -19
|
2344
|
+
|
2345
|
+
use SQL::PreparedStatement to improve speed
|
2346
|
+
|
2347
|
+
2001-11-21 15:03 Michael Neumann <mneumann@ntecs.de>
|
2348
|
+
|
2349
|
+
Changed:
|
2350
|
+
ext/dbd_sqlite/SQLite.c (1.2), "Exp", lines: +219 -18
|
2351
|
+
|
2352
|
+
added conversion routine
|
2353
|
+
|
2354
|
+
2001-11-21 15:01 Michael Neumann <mneumann@ntecs.de>
|
2355
|
+
|
2356
|
+
Added:
|
2357
|
+
test/michael/sqlite.cfg (1.1)
|
2358
|
+
test/michael/sqlite/config.sh (1.1)
|
2359
|
+
test/michael/sqlite/setup.sh (1.1)
|
2360
|
+
test/michael/sqlite/teardown.sh (1.1)
|
2361
|
+
ext/dbd_sqlite/README (1.1)
|
2362
|
+
|
2363
|
+
initial import
|
2364
|
+
|
2365
|
+
2001-11-17 17:17 Michael Neumann <mneumann@ntecs.de>
|
2366
|
+
|
2367
|
+
Added:
|
2368
|
+
bin/proxyserver/proxyserver.rb (1.1)
|
2369
|
+
|
2370
|
+
moved from examples/
|
2371
|
+
|
2372
|
+
2001-11-17 17:17 Michael Neumann <mneumann@ntecs.de>
|
2373
|
+
|
2374
|
+
Deleted:
|
2375
|
+
examples/proxyserver.rb (1.6)
|
2376
|
+
|
2377
|
+
moved to bin/proxyserver
|
2378
|
+
|
2379
|
+
2001-11-17 15:53 Michael Neumann <mneumann@ntecs.de>
|
2380
|
+
|
2381
|
+
Changed:
|
2382
|
+
bin/commandline/sqlsh.rb (1.2), "Exp", lines: +41 -20
|
2383
|
+
|
2384
|
+
command-line option --file
|
2385
|
+
|
2386
|
+
2001-11-17 14:55 Michael Neumann <mneumann@ntecs.de>
|
2387
|
+
|
2388
|
+
Added:
|
2389
|
+
bin/PATHCONV (1.1)
|
2390
|
+
|
2391
|
+
initial import
|
2392
|
+
|
2393
|
+
2001-11-17 14:54 Michael Neumann <mneumann@ntecs.de>
|
2394
|
+
|
2395
|
+
Added:
|
2396
|
+
bin/commandline/sqlsh.rb (1.1)
|
2397
|
+
|
2398
|
+
refactored code; new feature irb/rb; moved from examples dir
|
2399
|
+
|
2400
|
+
2001-11-17 14:52 Michael Neumann <mneumann@ntecs.de>
|
2401
|
+
|
2402
|
+
Deleted:
|
2403
|
+
examples/sqlsh.rb (1.11)
|
2404
|
+
|
2405
|
+
moved to bin/commandline
|
2406
|
+
|
2407
|
+
2001-11-14 14:11 tag dbi-0-0-11
|
2408
|
+
|
2409
|
+
2001-11-14 14:11 Michael Neumann <mneumann@ntecs.de>
|
2410
|
+
|
2411
|
+
Changed:
|
2412
|
+
lib/dbd_pg/test/test_blob.rb (1.2), "Exp", lines: +37 -4
|
2413
|
+
|
2414
|
+
improved blob test
|
2415
|
+
|
2416
|
+
2001-11-14 14:04 Michael Neumann <mneumann@ntecs.de>
|
2417
|
+
|
2418
|
+
Changed:
|
2419
|
+
ext/dbd_sqlite/extconf.rb (1.2), "Exp", lines: +2 -2
|
2420
|
+
|
2421
|
+
fixed
|
2422
|
+
|
2423
|
+
2001-11-14 14:04 Michael Neumann <mneumann@ntecs.de>
|
2424
|
+
|
2425
|
+
Changed:
|
2426
|
+
doc/html/index.html (1.18), "Exp", lines: +2 -2
|
2427
|
+
|
2428
|
+
*
|
2429
|
+
|
2430
|
+
2001-11-14 14:00 Michael Neumann <mneumann@ntecs.de>
|
2431
|
+
|
2432
|
+
Changed:
|
2433
|
+
doc/index.rd (1.14), "Exp", lines: +5 -1
|
2434
|
+
doc/html/index.html (1.17), "Exp", lines: +3 -1
|
2435
|
+
doc/index.rd (1.15), "Exp", lines: +2 -2
|
2436
|
+
|
2437
|
+
*
|
2438
|
+
|
2439
|
+
2001-11-14 13:41 Michael Neumann <mneumann@ntecs.de>
|
2440
|
+
|
2441
|
+
Changed:
|
2442
|
+
lib/dbi/dbi.rb (1.24), "Exp", lines: +2 -2
|
2443
|
+
|
2444
|
+
DatabaseError.new without arguments
|
2445
|
+
|
2446
|
+
2001-11-14 13:38 Michael Neumann <mneumann@ntecs.de>
|
2447
|
+
|
2448
|
+
Changed:
|
2449
|
+
ext/PATHCONV (1.2), "Exp", lines: +2 -1
|
2450
|
+
|
2451
|
+
new dbd
|
2452
|
+
|
2453
|
+
2001-11-14 13:38 Michael Neumann <mneumann@ntecs.de>
|
2454
|
+
|
2455
|
+
Added:
|
2456
|
+
ext/dbd_sqlite/SQLite.c (1.1)
|
2457
|
+
ext/dbd_sqlite/extconf.rb (1.1)
|
2458
|
+
|
2459
|
+
initial import
|
2460
|
+
|
2461
|
+
2001-11-13 14:53 Michael Neumann <mneumann@ntecs.de>
|
2462
|
+
|
2463
|
+
Changed:
|
2464
|
+
examples/sqlsh.rb (1.10), "Exp", lines: +2 -2
|
2465
|
+
|
2466
|
+
abort table output with "a"
|
2467
|
+
|
2468
|
+
2001-11-13 14:52 Michael Neumann <mneumann@ntecs.de>
|
2469
|
+
|
2470
|
+
Changed:
|
2471
|
+
doc/html/index.html (1.16), "Exp", lines: +0 -0
|
2472
|
+
|
2473
|
+
*
|
2474
|
+
|
2475
|
+
2001-11-13 14:25 Michael Neumann <mneumann@ntecs.de>
|
2476
|
+
|
2477
|
+
Changed:
|
2478
|
+
lib/dbd_mysql/Mysql.rb (1.10), "Exp", lines: +18 -8
|
2479
|
+
|
2480
|
+
fixed quote
|
2481
|
+
fixed finish (method do => no result handle => nil.free => exception)
|
2482
|
+
|
2483
|
+
2001-11-13 14:25 tag dbi-0-0-10
|
2484
|
+
|
2485
|
+
2001-11-13 14:25 Michael Neumann <mneumann@ntecs.de>
|
2486
|
+
|
2487
|
+
Added:
|
2488
|
+
lib/dbd_mysql/test/blob_test.rb (1.1)
|
2489
|
+
|
2490
|
+
initial import
|
2491
|
+
|
2492
|
+
2001-11-13 11:31 Michael Neumann <mneumann@ntecs.de>
|
2493
|
+
|
2494
|
+
Changed:
|
2495
|
+
lib/dbd_odbc/ODBC.rb (1.5), "Exp", lines: +2 -2
|
2496
|
+
|
2497
|
+
small fix
|
2498
|
+
|
2499
|
+
2001-11-13 11:29 Michael Neumann <mneumann@ntecs.de>
|
2500
|
+
|
2501
|
+
Changed:
|
2502
|
+
doc/html/index.html (1.15), "Exp", lines: +36 -20
|
2503
|
+
|
2504
|
+
*
|
2505
|
+
|
2506
|
+
2001-11-13 11:29 Michael Neumann <mneumann@ntecs.de>
|
2507
|
+
|
2508
|
+
Changed:
|
2509
|
+
doc/index.rd (1.13), "Exp", lines: +16 -1
|
2510
|
+
lib/dbi/dbi.rb (1.23), "Exp", lines: +3 -3
|
2511
|
+
|
2512
|
+
new version
|
2513
|
+
|
2514
|
+
2001-11-13 11:00 Michael Neumann <mneumann@ntecs.de>
|
2515
|
+
|
2516
|
+
Changed:
|
2517
|
+
lib/dbd_pg/Pg.rb (1.13), "Exp", lines: +8 -4
|
2518
|
+
|
2519
|
+
improved Database#ping
|
2520
|
+
|
2521
|
+
2001-11-13 11:00 Michael Neumann <mneumann@ntecs.de>
|
2522
|
+
|
2523
|
+
Added:
|
2524
|
+
lib/dbd_pg/test/test_ping.rb (1.1)
|
2525
|
+
|
2526
|
+
initial import
|
2527
|
+
|
2528
|
+
2001-11-12 20:27 Michael Neumann <mneumann@ntecs.de>
|
2529
|
+
|
2530
|
+
Changed:
|
2531
|
+
lib/PATHCONV (1.10), "Exp", lines: +1 -0
|
2532
|
+
|
2533
|
+
added SQLRelay
|
2534
|
+
|
2535
|
+
2001-11-12 20:25 Michael Neumann <mneumann@ntecs.de>
|
2536
|
+
|
2537
|
+
Changed:
|
2538
|
+
lib/dbd_sqlrelay/SQLRelay.rb (1.2), "Exp", lines: +69 -22
|
2539
|
+
|
2540
|
+
added AutoCommit, added fetch_scroll...
|
2541
|
+
|
2542
|
+
2001-11-12 19:40 Michael Neumann <mneumann@ntecs.de>
|
2543
|
+
|
2544
|
+
Added:
|
2545
|
+
lib/dbd_pg/test/test_blob.rb (1.1)
|
2546
|
+
|
2547
|
+
initial creation
|
2548
|
+
|
2549
|
+
2001-11-12 19:37 Michael Neumann <mneumann@ntecs.de>
|
2550
|
+
|
2551
|
+
Changed:
|
2552
|
+
lib/dbd_pg/Pg.rb (1.12), "Exp", lines: +87 -2
|
2553
|
+
|
2554
|
+
added Databaseattribute: pg_client_encoding
|
2555
|
+
added driver specific functions in Database: blob_import, blob_export, blob_create, blob_open, blob_unlink and blob_read
|
2556
|
+
convert DBI::Binary objects to OID's and insert the content as BLOB
|
2557
|
+
|
2558
|
+
2001-11-11 20:57 Michael Neumann <mneumann@ntecs.de>
|
2559
|
+
|
2560
|
+
Added:
|
2561
|
+
lib/dbd_sqlrelay/SQLRelay.rb (1.1)
|
2562
|
+
|
2563
|
+
initial import
|
2564
|
+
|
2565
|
+
2001-11-09 16:08 Michael Neumann <mneumann@ntecs.de>
|
2566
|
+
|
2567
|
+
Changed:
|
2568
|
+
lib/dbd_mysql/Mysql.rb (1.9), "Exp", lines: +3 -3
|
2569
|
+
|
2570
|
+
modified method column_info
|
2571
|
+
|
2572
|
+
2001-11-09 01:32 Michael Neumann <mneumann@ntecs.de>
|
2573
|
+
|
2574
|
+
Changed:
|
2575
|
+
lib/dbd_db2/DB2.rb (1.5), "Exp", lines: +59 -30
|
2576
|
+
|
2577
|
+
fixed several bugs
|
2578
|
+
|
2579
|
+
2001-11-08 23:45 Michael Neumann <mneumann@ntecs.de>
|
2580
|
+
|
2581
|
+
Added:
|
2582
|
+
test/michael/pg.cfg (1.1)
|
2583
|
+
test/michael/pg/config.sh (1.1)
|
2584
|
+
test/michael/pg/setup.sh (1.1)
|
2585
|
+
test/michael/pg/teardown.sh (1.1)
|
2586
|
+
|
2587
|
+
initial import
|
2588
|
+
|
2589
|
+
2001-11-08 23:45 Michael Neumann <mneumann@ntecs.de>
|
2590
|
+
|
2591
|
+
Changed:
|
2592
|
+
test/testdbi.rb (1.3), "Exp", lines: +1 -1
|
2593
|
+
|
2594
|
+
fixed bug (skaro)
|
2595
|
+
|
2596
|
+
2001-11-08 23:31 Michael Neumann <mneumann@ntecs.de>
|
2597
|
+
|
2598
|
+
Changed:
|
2599
|
+
lib/dbi/sql.rb (1.8), "Exp", lines: +2 -2
|
2600
|
+
|
2601
|
+
corrected type prefix (DBI::)
|
2602
|
+
|
2603
|
+
2001-11-08 23:30 Michael Neumann <mneumann@ntecs.de>
|
2604
|
+
|
2605
|
+
Changed:
|
2606
|
+
lib/dbi/test/testsqlbind.rb (1.4), "Exp", lines: +1 -1
|
2607
|
+
lib/dbi/test/testsqlquote.rb (1.4), "Exp", lines: +1 -1
|
2608
|
+
|
2609
|
+
fixed require (dbi instead of just sql)
|
2610
|
+
|
2611
|
+
2001-11-08 22:39 Michael Neumann <mneumann@ntecs.de>
|
2612
|
+
|
2613
|
+
Changed:
|
2614
|
+
lib/dbi/utils.rb (1.9), "Exp", lines: +9 -3
|
2615
|
+
|
2616
|
+
TableFormatter#ascii modified
|
2617
|
+
|
2618
|
+
2001-11-08 22:38 Michael Neumann <mneumann@ntecs.de>
|
2619
|
+
|
2620
|
+
Changed:
|
2621
|
+
lib/dbd_pg/Pg.rb (1.11), "Exp", lines: +21 -7
|
2622
|
+
|
2623
|
+
method columns: extract default value
|
2624
|
+
|
2625
|
+
2001-11-08 21:51 Michael Neumann <mneumann@ntecs.de>
|
2626
|
+
|
2627
|
+
Changed:
|
2628
|
+
examples/sqlsh.rb (1.9), "Exp", lines: +66 -12
|
2629
|
+
|
2630
|
+
added commands \dt (describe table), \s (short select) and \pl (page length)
|
2631
|
+
|
2632
|
+
2001-10-30 12:51 Michael Neumann <mneumann@ntecs.de>
|
2633
|
+
|
2634
|
+
Changed:
|
2635
|
+
doc/html/index.html (1.14), "Exp", lines: +2 -2
|
2636
|
+
|
2637
|
+
*
|
2638
|
+
|
2639
|
+
2001-10-30 12:51 Michael Neumann <mneumann@ntecs.de>
|
2640
|
+
|
2641
|
+
Changed:
|
2642
|
+
doc/index.rd (1.12), "Exp", lines: +2 -2
|
2643
|
+
|
2644
|
+
fixed typo
|
2645
|
+
|
2646
|
+
2001-10-22 16:08 Michael Neumann <mneumann@ntecs.de>
|
2647
|
+
|
2648
|
+
Changed:
|
2649
|
+
doc/html/index.html (1.13), "Exp", lines: +21 -15
|
2650
|
+
|
2651
|
+
*
|
2652
|
+
|
2653
|
+
2001-10-22 16:07 Michael Neumann <mneumann@ntecs.de>
|
2654
|
+
|
2655
|
+
Changed:
|
2656
|
+
doc/index.rd (1.11), "Exp", lines: +6 -2
|
2657
|
+
|
2658
|
+
new release
|
2659
|
+
|
2660
|
+
2001-10-22 16:05 Michael Neumann <mneumann@ntecs.de>
|
2661
|
+
|
2662
|
+
Changed:
|
2663
|
+
lib/dbi/dbi.rb (1.22), "Exp", lines: +17 -3
|
2664
|
+
|
2665
|
+
preced driver specific functions with __
|
2666
|
+
|
2667
|
+
2001-10-22 15:59 Michael Neumann <mneumann@ntecs.de>
|
2668
|
+
|
2669
|
+
Changed:
|
2670
|
+
lib/dbd_odbc/ODBC.rb (1.4), "Exp", lines: +9 -3
|
2671
|
+
|
2672
|
+
added odbc_ignorecase option (submitted by Sean O'Halpin)
|
2673
|
+
|
2674
|
+
2001-10-10 13:33 Michael Neumann <mneumann@ntecs.de>
|
2675
|
+
|
2676
|
+
Changed:
|
2677
|
+
lib/dbd_mysql/Mysql.rb (1.8), "Exp", lines: +130 -7
|
2678
|
+
|
2679
|
+
added method StatementHandle#fetch_scroll
|
2680
|
+
added createdb, dropdb, reload, shutdown
|
2681
|
+
|
2682
|
+
2001-10-10 10:47 Michael Neumann <mneumann@ntecs.de>
|
2683
|
+
|
2684
|
+
Changed:
|
2685
|
+
lib/dbi/dbi.rb (1.21), "Exp", lines: +47 -40
|
2686
|
+
|
2687
|
+
method DBI.get_driver renamed to DBI._get_full_driver
|
2688
|
+
new method DBI.get_driver now returns only DriverHandle object
|
2689
|
+
added attribute reader for DBI::Handle
|
2690
|
+
|
2691
|
+
2001-10-10 10:39 Michael Neumann <mneumann@ntecs.de>
|
2692
|
+
|
2693
|
+
Changed:
|
2694
|
+
examples/proxyserver.rb (1.5), "Exp", lines: +2 -2
|
2695
|
+
|
2696
|
+
DBI.get_driver => DBI._get_full_driver
|
2697
|
+
|
2698
|
+
2001-09-07 13:39 tag dbi-0-0-9
|
2699
|
+
|
2700
|
+
2001-09-07 13:39 Michael Neumann <mneumann@ntecs.de>
|
2701
|
+
|
2702
|
+
Changed:
|
2703
|
+
doc/index.rd (1.10), "Exp", lines: +4 -1
|
2704
|
+
doc/html/index.html (1.12), "Exp", lines: +19 -13
|
2705
|
+
|
2706
|
+
*
|
2707
|
+
|
2708
|
+
2001-09-05 21:56 Michael Neumann <mneumann@ntecs.de>
|
2709
|
+
|
2710
|
+
Changed:
|
2711
|
+
lib/dbi/sql.rb (1.7), "Exp", lines: +2 -2
|
2712
|
+
|
2713
|
+
fixed bug in "quote" (found by Steven Davies)
|
2714
|
+
|
2715
|
+
2001-08-30 14:34 Michael Neumann <mneumann@ntecs.de>
|
2716
|
+
|
2717
|
+
Changed:
|
2718
|
+
lib/dbd_pg/Pg.rb (1.10), "Exp", lines: +3 -3
|
2719
|
+
lib/dbd_mysql/Mysql.rb (1.7), "Exp", lines: +5 -5
|
2720
|
+
|
2721
|
+
columns: size=>precision; decimal_digits=>scale
|
2722
|
+
|
2723
|
+
2001-08-30 14:30 Michael Neumann <mneumann@ntecs.de>
|
2724
|
+
|
2725
|
+
Changed:
|
2726
|
+
lib/dbi/dbi.rb (1.20), "Exp", lines: +4 -17
|
2727
|
+
|
2728
|
+
changed SQL_type constants
|
2729
|
+
|
2730
|
+
2001-08-30 14:10 Michael Neumann <mneumann@ntecs.de>
|
2731
|
+
|
2732
|
+
Changed:
|
2733
|
+
lib/dbd_db2/DB2.rb (1.4), "Exp", lines: +59 -10
|
2734
|
+
|
2735
|
+
column_info returns more info's
|
2736
|
+
|
2737
|
+
2001-08-30 14:06 Michael Neumann <mneumann@ntecs.de>
|
2738
|
+
|
2739
|
+
Changed:
|
2740
|
+
examples/proxyserver.rb (1.4), "Exp", lines: +2 -2
|
2741
|
+
|
2742
|
+
changed DBD version checking
|
2743
|
+
|
2744
|
+
2001-08-30 14:06 Michael Neumann <mneumann@ntecs.de>
|
2745
|
+
|
2746
|
+
Changed:
|
2747
|
+
lib/dbd_proxy/Proxy.rb (1.6), "Exp", lines: +8 -2
|
2748
|
+
|
2749
|
+
changed version checking
|
2750
|
+
|
2751
|
+
2001-08-30 14:05 Michael Neumann <mneumann@ntecs.de>
|
2752
|
+
|
2753
|
+
Changed:
|
2754
|
+
lib/dbd_odbc/ODBC.rb (1.3), "Exp", lines: +6 -4
|
2755
|
+
|
2756
|
+
removed patch required for Ruby/ODBC 0.4
|
2757
|
+
|
2758
|
+
2001-08-30 14:02 Michael Neumann <mneumann@ntecs.de>
|
2759
|
+
|
2760
|
+
Changed:
|
2761
|
+
doc/html/index.html (1.11), "Exp", lines: +77 -23
|
2762
|
+
|
2763
|
+
*
|
2764
|
+
|
2765
|
+
2001-08-30 14:01 Michael Neumann <mneumann@ntecs.de>
|
2766
|
+
|
2767
|
+
Changed:
|
2768
|
+
doc/index.rd (1.9), "Exp", lines: +44 -8
|
2769
|
+
|
2770
|
+
added more contributors; new example; updated dbd_odbc (required newer version)
|
2771
|
+
|
2772
|
+
2001-08-30 13:34 Michael Neumann <mneumann@ntecs.de>
|
2773
|
+
|
2774
|
+
Changed:
|
2775
|
+
lib/dbi/dbi.rb (1.19), "Exp", lines: +6 -47
|
2776
|
+
|
2777
|
+
moved DBI::ColumnInfo to own file columninfo.rb
|
2778
|
+
removed DBD::COMPATIBLE_API_VERSIONS (now use major/minor)
|
2779
|
+
|
2780
|
+
2001-08-30 13:31 Michael Neumann <mneumann@ntecs.de>
|
2781
|
+
|
2782
|
+
Changed:
|
2783
|
+
lib/dbi/row.rb (1.7), "Exp", lines: +4 -0
|
2784
|
+
|
2785
|
+
*
|
2786
|
+
|
2787
|
+
2001-08-30 13:31 Michael Neumann <mneumann@ntecs.de>
|
2788
|
+
|
2789
|
+
Added:
|
2790
|
+
lib/dbi/columninfo.rb (1.1)
|
2791
|
+
|
2792
|
+
initial import (moved from dbi.rb)
|
2793
|
+
|
2794
|
+
2001-08-23 22:11 Michael Neumann <mneumann@ntecs.de>
|
2795
|
+
|
2796
|
+
Changed:
|
2797
|
+
lib/dbi/dbi.rb (1.18), "Exp", lines: +3 -2
|
2798
|
+
|
2799
|
+
added DBI::DBD::COMPATIBLE_API_VERSIONS
|
2800
|
+
|
2801
|
+
2001-08-23 22:09 Michael Neumann <mneumann@ntecs.de>
|
2802
|
+
|
2803
|
+
Changed:
|
2804
|
+
lib/dbd_proxy/Proxy.rb (1.5), "Exp", lines: +2 -2
|
2805
|
+
|
2806
|
+
fixed DBD problems
|
2807
|
+
|
2808
|
+
2001-08-23 22:09 Michael Neumann <mneumann@ntecs.de>
|
2809
|
+
|
2810
|
+
Changed:
|
2811
|
+
examples/proxyserver.rb (1.3), "Exp", lines: +2 -2
|
2812
|
+
|
2813
|
+
fixed DBD version problems
|
2814
|
+
|
2815
|
+
2001-08-23 22:05 Michael Neumann <mneumann@ntecs.de>
|
2816
|
+
|
2817
|
+
Changed:
|
2818
|
+
lib/dbd_proxy/Proxy.rb (1.4), "Exp", lines: +3 -3
|
2819
|
+
|
2820
|
+
fixed problems with different DBD version on the server side
|
2821
|
+
|
2822
|
+
2001-08-23 22:04 Michael Neumann <mneumann@ntecs.de>
|
2823
|
+
|
2824
|
+
Changed:
|
2825
|
+
lib/dbd_mysql/Mysql.rb (1.6), "Exp", lines: +105 -4
|
2826
|
+
|
2827
|
+
added Database#columns; by Eli Green
|
2828
|
+
|
2829
|
+
2001-08-23 21:47 Michael Neumann <mneumann@ntecs.de>
|
2830
|
+
|
2831
|
+
Changed:
|
2832
|
+
lib/dbd_pg/Pg.rb (1.9), "Exp", lines: +107 -2
|
2833
|
+
|
2834
|
+
added Database#columns from Eli Green
|
2835
|
+
|
2836
|
+
2001-08-23 20:59 Michael Neumann <mneumann@ntecs.de>
|
2837
|
+
|
2838
|
+
Changed:
|
2839
|
+
lib/dbi/dbi.rb (1.17), "Exp", lines: +107 -11
|
2840
|
+
|
2841
|
+
StatementHandle#column_info returns now array of DBI::ColumnInfo
|
2842
|
+
added class DBI::ColumnInfo
|
2843
|
+
added method DatabaseHandle#columns(table) and BaseDatabase#columns(table)
|
2844
|
+
|
2845
|
+
2001-08-21 21:01 Michael Neumann <mneumann@ntecs.de>
|
2846
|
+
|
2847
|
+
Changed:
|
2848
|
+
lib/dbi/utils.rb (1.8), "Exp", lines: +3 -3
|
2849
|
+
|
2850
|
+
fixed bug in XMLFormatter.table (found by Jim Menard)
|
2851
|
+
|
2852
|
+
2001-07-28 12:07 tag dbi-0-0-8
|
2853
|
+
|
2854
|
+
2001-07-28 12:07 Michael Neumann <mneumann@ntecs.de>
|
2855
|
+
|
2856
|
+
Added:
|
2857
|
+
examples/persistence.rb (1.1)
|
2858
|
+
Changed:
|
2859
|
+
doc/html/index.html (1.10), "Exp", lines: +90 -183
|
2860
|
+
|
2861
|
+
*
|
2862
|
+
|
2863
|
+
2001-07-28 11:58 Michael Neumann <mneumann@ntecs.de>
|
2864
|
+
|
2865
|
+
Changed:
|
2866
|
+
doc/index.rd (1.8), "Exp", lines: +8 -1
|
2867
|
+
|
2868
|
+
new version
|
2869
|
+
|
2870
|
+
2001-07-26 00:56 jweirich
|
2871
|
+
|
2872
|
+
Changed:
|
2873
|
+
lib/dbi/row.rb (1.6), "Exp", lines: +3 -0
|
2874
|
+
lib/dbi/test/testrow.rb (1.3), "Exp", lines: +28 -16
|
2875
|
+
|
2876
|
+
Fixed row.rb so that dup and clone work
|
2877
|
+
|
2878
|
+
2001-07-19 09:37 Michael Neumann <mneumann@ntecs.de>
|
2879
|
+
|
2880
|
+
Changed:
|
2881
|
+
lib/dbi/dbi.rb (1.16), "Exp", lines: +2 -3
|
2882
|
+
|
2883
|
+
fixed bug in load_driver (thanks to John Gorman)
|
2884
|
+
|
2885
|
+
2001-07-17 16:57 Michael Neumann <mneumann@ntecs.de>
|
2886
|
+
|
2887
|
+
Changed:
|
2888
|
+
lib/dbi/sql.rb (1.6), "Exp", lines: +3 -2
|
2889
|
+
|
2890
|
+
corrected quoting for Time, Date and DateTime
|
2891
|
+
|
2892
|
+
2001-07-11 21:54 Michael Neumann <mneumann@ntecs.de>
|
2893
|
+
|
2894
|
+
Changed:
|
2895
|
+
doc/index.rd (1.7), "Exp", lines: +5 -1
|
2896
|
+
doc/html/index.html (1.8), "Exp", lines: +10 -3
|
2897
|
+
|
2898
|
+
*
|
2899
|
+
|
2900
|
+
2001-07-10 15:07 tag dbi-0-0-7
|
2901
|
+
|
2902
|
+
2001-07-10 15:07 Michael Neumann <mneumann@ntecs.de>
|
2903
|
+
|
2904
|
+
Changed:
|
2905
|
+
lib/dbi/dbi.rb (1.15), "Exp", lines: +3 -1
|
2906
|
+
|
2907
|
+
fixed bug; missing else-branch and return
|
2908
|
+
|
2909
|
+
2001-07-06 19:36 tag dbi-0-0-6
|
2910
|
+
|
2911
|
+
2001-07-06 19:36 Michael Neumann <mneumann@ntecs.de>
|
2912
|
+
|
2913
|
+
Changed:
|
2914
|
+
doc/html/index.html (1.7), "Exp", lines: +10 -3
|
2915
|
+
|
2916
|
+
*
|
2917
|
+
|
2918
|
+
2001-07-06 19:35 Michael Neumann <mneumann@ntecs.de>
|
2919
|
+
|
2920
|
+
Changed:
|
2921
|
+
lib/dbi/dbi.rb (1.14), "Exp", lines: +2 -1
|
2922
|
+
|
2923
|
+
fixed bug in load_driver (added return found)
|
2924
|
+
|
2925
|
+
2001-07-06 18:21 Michael Neumann <mneumann@ntecs.de>
|
2926
|
+
|
2927
|
+
Changed:
|
2928
|
+
doc/index.rd (1.6), "Exp", lines: +6 -2
|
2929
|
+
|
2930
|
+
new release
|
2931
|
+
|
2932
|
+
2001-07-06 18:16 Michael Neumann <mneumann@ntecs.de>
|
2933
|
+
|
2934
|
+
Changed:
|
2935
|
+
lib/dbd_pg/Pg.rb (1.8), "Exp", lines: +3 -2
|
2936
|
+
|
2937
|
+
added DBI URI parameter database additionally to dbname
|
2938
|
+
|
2939
|
+
2001-07-06 18:14 Michael Neumann <mneumann@ntecs.de>
|
2940
|
+
|
2941
|
+
Changed:
|
2942
|
+
lib/dbd_proxy/Proxy.rb (1.3), "Exp", lines: +8 -4
|
2943
|
+
|
2944
|
+
rewritten DBI URI parser (due to dsn=...;...;)
|
2945
|
+
|
2946
|
+
2001-07-06 18:14 Michael Neumann <mneumann@ntecs.de>
|
2947
|
+
|
2948
|
+
Changed:
|
2949
|
+
lib/dbi/utils.rb (1.7), "Exp", lines: +11 -3
|
2950
|
+
|
2951
|
+
added patch by John Gorman for Utils.parse_params to allow database:host instead of database=...;host=...
|
2952
|
+
|
2953
|
+
2001-07-06 18:13 Michael Neumann <mneumann@ntecs.de>
|
2954
|
+
|
2955
|
+
Changed:
|
2956
|
+
lib/dbi/dbi.rb (1.13), "Exp", lines: +35 -6
|
2957
|
+
|
2958
|
+
added case-insensitive DBD name patch by John Gorman (e.g. dbi:Mysql:... and dbi:mysql:... should both work)
|
2959
|
+
|
2960
|
+
2001-06-29 17:18 Michael Neumann <mneumann@ntecs.de>
|
2961
|
+
|
2962
|
+
Changed:
|
2963
|
+
lib/dbi/dbi.rb (1.12), "Exp", lines: +3 -3
|
2964
|
+
lib/dbi/sql.rb (1.5), "Exp", lines: +1 -2
|
2965
|
+
lib/dbi/utils.rb (1.6), "Exp", lines: +4 -4
|
2966
|
+
|
2967
|
+
removed some warnings
|
2968
|
+
|
2969
|
+
2001-06-29 03:27 jweirich
|
2970
|
+
|
2971
|
+
Changed:
|
2972
|
+
test/testdbi.rb (1.2), "Exp", lines: +17 -17
|
2973
|
+
|
2974
|
+
Removed spaces before arg lists (warnings using -w)
|
2975
|
+
|
2976
|
+
2001-06-22 12:28 jweirich
|
2977
|
+
|
2978
|
+
Deleted:
|
2979
|
+
lib/dbi/test/testdbi.rb (1.3)
|
2980
|
+
Added:
|
2981
|
+
test/README (1.1)
|
2982
|
+
test/testdbi.rb (1.1)
|
2983
|
+
test/example/config.sh (1.1)
|
2984
|
+
test/example/example.cfg (1.1)
|
2985
|
+
test/example/setup.sh (1.1)
|
2986
|
+
test/example/teardown.sh (1.1)
|
2987
|
+
|
2988
|
+
Moved testdbi.rb to toplevel test dir. Added configurability
|
2989
|
+
|
2990
|
+
2001-06-18 13:59 Michael Neumann <mneumann@ntecs.de>
|
2991
|
+
|
2992
|
+
Changed:
|
2993
|
+
examples/sqlsh.rb (1.8), "Exp", lines: +76 -6
|
2994
|
+
|
2995
|
+
added input/output support
|
2996
|
+
|
2997
|
+
2001-06-18 13:49 Michael Neumann <mneumann@ntecs.de>
|
2998
|
+
|
2999
|
+
Changed:
|
3000
|
+
lib/dbi/utils.rb (1.5), "Exp", lines: +17 -1
|
3001
|
+
|
3002
|
+
added conv_param to convert Date/Time arguments to DBI::Date/Time
|
3003
|
+
|
3004
|
+
2001-06-18 13:48 Michael Neumann <mneumann@ntecs.de>
|
3005
|
+
|
3006
|
+
Changed:
|
3007
|
+
lib/dbi/sql.rb (1.4), "Exp", lines: +65 -1
|
3008
|
+
|
3009
|
+
added Masatoshi SEKI's Coerce class
|
3010
|
+
|
3011
|
+
2001-06-18 13:47 Michael Neumann <mneumann@ntecs.de>
|
3012
|
+
|
3013
|
+
Changed:
|
3014
|
+
lib/dbi/dbi.rb (1.11), "Exp", lines: +44 -9
|
3015
|
+
|
3016
|
+
improved DBI:: Date/Time/Timestamp classes, added automatic coercion from Date/automatic Time to DBI::Date/Time in parmeters
|
3017
|
+
|
3018
|
+
2001-06-18 13:45 Michael Neumann <mneumann@ntecs.de>
|
3019
|
+
|
3020
|
+
Changed:
|
3021
|
+
lib/dbd_pg/Pg.rb (1.7), "Exp", lines: +13 -19
|
3022
|
+
|
3023
|
+
added coercing from Masatoshi SEKI
|
3024
|
+
|
3025
|
+
2001-06-18 12:02 Michael Neumann <mneumann@ntecs.de>
|
3026
|
+
|
3027
|
+
Changed:
|
3028
|
+
lib/dbd_pg/Pg.rb (1.6), "Exp", lines: +16 -23
|
3029
|
+
|
3030
|
+
|
3031
|
+
connection changed to "dbi:Pg:dbname=..;host=...;port=...;tty=;options="
|
3032
|
+
|
3033
|
+
2001-06-17 20:04 jweirich
|
3034
|
+
|
3035
|
+
Changed:
|
3036
|
+
lib/dbi/sql.rb (1.3), "Exp", lines: +41 -21
|
3037
|
+
lib/dbi/test/testdbi.rb (1.2), "Exp", lines: +1 -1
|
3038
|
+
lib/dbi/test/testsqlbind.rb (1.3), "Exp", lines: +71 -0
|
3039
|
+
lib/dbi/test/testsqlquote.rb (1.3), "Exp", lines: +1 -1
|
3040
|
+
|
3041
|
+
Updated the sql binding methods to correctly ignore ? in a string. Tests also updated.
|
3042
|
+
|
3043
|
+
2001-06-11 12:59 Michael Neumann <mneumann@ntecs.de>
|
3044
|
+
|
3045
|
+
Changed:
|
3046
|
+
examples/sqlsh.rb (1.7), "Exp", lines: +2 -2
|
3047
|
+
|
3048
|
+
output available DBDs (call sqlsh.rb without params) even if an error occured
|
3049
|
+
|
3050
|
+
2001-06-11 12:58 Michael Neumann <mneumann@ntecs.de>
|
3051
|
+
|
3052
|
+
Changed:
|
3053
|
+
lib/dbi/trace.rb (1.2), "Exp", lines: +2 -1
|
3054
|
+
|
3055
|
+
added require "dbi" to work as "ruby -r dbi/trace myprog.rb"
|
3056
|
+
|
3057
|
+
2001-06-11 10:46 Michael Neumann <mneumann@ntecs.de>
|
3058
|
+
|
3059
|
+
Changed:
|
3060
|
+
doc/html/index.html (1.6), "Exp", lines: +22 -14
|
3061
|
+
|
3062
|
+
*
|
3063
|
+
|
3064
|
+
2001-06-11 10:45 Michael Neumann <mneumann@ntecs.de>
|
3065
|
+
|
3066
|
+
Changed:
|
3067
|
+
doc/index.rd (1.5), "Exp", lines: +13 -5
|
3068
|
+
|
3069
|
+
ChangeLog and ToDo section
|
3070
|
+
|
3071
|
+
2001-06-11 10:44 Michael Neumann <mneumann@ntecs.de>
|
3072
|
+
|
3073
|
+
Changed:
|
3074
|
+
lib/dbi/dbi.rb (1.10), "Exp", lines: +2 -21
|
3075
|
+
|
3076
|
+
version => 0.0.6, moved ToDo's into file doc/ToDo
|
3077
|
+
|
3078
|
+
2001-06-11 00:11 Michael Neumann <mneumann@ntecs.de>
|
3079
|
+
|
3080
|
+
Changed:
|
3081
|
+
lib/dbi/sql.rb (1.2), "Exp", lines: +19 -11
|
3082
|
+
|
3083
|
+
fixed bug found by Masatoshi SEKI in bind(self, "WHERE a=?", ["connected?"])
|
3084
|
+
|
3085
|
+
2001-06-11 00:09 Michael Neumann <mneumann@ntecs.de>
|
3086
|
+
|
3087
|
+
Changed:
|
3088
|
+
lib/dbi/test/testrow.rb (1.2), "Exp", lines: +1 -1
|
3089
|
+
lib/dbi/test/testsqlbind.rb (1.2), "Exp", lines: +10 -1
|
3090
|
+
lib/dbi/test/testsqlquote.rb (1.2), "Exp", lines: +1 -1
|
3091
|
+
|
3092
|
+
require files in the directory below instead of installed (e.g. ../sql instead of dbi/sql)
|
3093
|
+
extended testsqlbind.rb (to check for a bug occured in 0.0.5)
|
3094
|
+
|
3095
|
+
2001-06-08 20:30 tag dbi-0-0-5
|
3096
|
+
|
3097
|
+
2001-06-08 20:30 Michael Neumann <mneumann@ntecs.de>
|
3098
|
+
|
3099
|
+
Changed:
|
3100
|
+
doc/index.rd (1.4), "Exp", lines: +2 -2
|
3101
|
+
doc/html/index.html (1.5), "Exp", lines: +1 -1
|
3102
|
+
|
3103
|
+
changed downloads
|
3104
|
+
|
3105
|
+
2001-06-08 20:28 Michael Neumann <mneumann@ntecs.de>
|
3106
|
+
|
3107
|
+
Changed:
|
3108
|
+
lib/dbd_odbc/ODBC.rb (1.2), "Exp", lines: +2 -2
|
3109
|
+
|
3110
|
+
corrected data_sources ("dbi:ODBC:" + ...)
|
3111
|
+
|
3112
|
+
2001-06-08 20:21 Michael Neumann <mneumann@ntecs.de>
|
3113
|
+
|
3114
|
+
Added:
|
3115
|
+
lib/dbi/trace.rb (1.1)
|
3116
|
+
Changed:
|
3117
|
+
lib/dbi/dbi.rb (1.9), "Exp", lines: +36 -3
|
3118
|
+
|
3119
|
+
added tracing to DBI
|
3120
|
+
|
3121
|
+
2001-06-07 20:13 Michael Neumann <mneumann@ntecs.de>
|
3122
|
+
|
3123
|
+
Changed:
|
3124
|
+
examples/sqlsh.rb (1.6), "Exp", lines: +8 -4
|
3125
|
+
|
3126
|
+
added resuce when showing the available DSN
|
3127
|
+
|
3128
|
+
2001-06-07 19:12 Michael Neumann <mneumann@ntecs.de>
|
3129
|
+
|
3130
|
+
Changed:
|
3131
|
+
doc/html/index.html (1.4), "Exp", lines: +9 -1
|
3132
|
+
lib/dbd_db2/DB2.rb (1.3), "Exp", lines: +40 -13
|
3133
|
+
|
3134
|
+
added fetch_scroll as well as Date/Time convertion for DB2
|
3135
|
+
|
3136
|
+
2001-06-07 19:10 Michael Neumann <mneumann@ntecs.de>
|
3137
|
+
|
3138
|
+
Changed:
|
3139
|
+
doc/index.rd (1.3), "Exp", lines: +6 -1
|
3140
|
+
|
3141
|
+
added ODBC
|
3142
|
+
|
3143
|
+
2001-06-07 19:06 Michael Neumann <mneumann@ntecs.de>
|
3144
|
+
|
3145
|
+
Changed:
|
3146
|
+
lib/dbi/dbi.rb (1.8), "Exp", lines: +29 -3
|
3147
|
+
|
3148
|
+
added classes Date and Time
|
3149
|
+
|
3150
|
+
2001-06-07 19:06 Michael Neumann <mneumann@ntecs.de>
|
3151
|
+
|
3152
|
+
Added:
|
3153
|
+
lib/dbd_odbc/ODBC.rb (1.1)
|
3154
|
+
Changed:
|
3155
|
+
lib/PATHCONV (1.9), "Exp", lines: +1 -0
|
3156
|
+
|
3157
|
+
initial import
|
3158
|
+
|
3159
|
+
2001-06-07 13:52 Michael Neumann <mneumann@ntecs.de>
|
3160
|
+
|
3161
|
+
Added:
|
3162
|
+
lib/dbd_msql/Msql.rb (1.1)
|
3163
|
+
Changed:
|
3164
|
+
doc/html/index.html (1.3), "Exp", lines: +8 -1
|
3165
|
+
lib/PATHCONV (1.8), "Exp", lines: +1 -0
|
3166
|
+
lib/dbd_mysql/Mysql.rb (1.5), "Exp", lines: +14 -5
|
3167
|
+
|
3168
|
+
added method do in Mysql
|
3169
|
+
initial import of Msql
|
3170
|
+
|
3171
|
+
2001-06-07 13:52 Michael Neumann <mneumann@ntecs.de>
|
3172
|
+
|
3173
|
+
Changed:
|
3174
|
+
doc/index.rd (1.2), "Exp", lines: +5 -1
|
3175
|
+
|
3176
|
+
mSQL added
|
3177
|
+
|
3178
|
+
2001-06-07 10:42 Michael Neumann <mneumann@ntecs.de>
|
3179
|
+
|
3180
|
+
Changed:
|
3181
|
+
lib/dbd_ado/ADO.rb (1.5), "Exp", lines: +12 -13
|
3182
|
+
lib/dbd_db2/DB2.rb (1.2), "Exp", lines: +2 -2
|
3183
|
+
lib/dbd_interbase/InterBase.rb (1.3), "Exp", lines: +30 -13
|
3184
|
+
lib/dbd_mysql/Mysql.rb (1.4), "Exp", lines: +13 -16
|
3185
|
+
lib/dbd_oracle/Oracle.rb (1.3), "Exp", lines: +38 -16
|
3186
|
+
lib/dbd_pg/Pg.rb (1.5), "Exp", lines: +3 -3
|
3187
|
+
lib/dbd_proxy/Proxy.rb (1.2), "Exp", lines: +21 -2
|
3188
|
+
lib/dbi/dbi.rb (1.7), "Exp", lines: +2 -2
|
3189
|
+
|
3190
|
+
changed raising DBI::Error to DBI::DatabaseError
|
3191
|
+
changed method DBI::DatabaseError.new
|
3192
|
+
|
3193
|
+
2001-06-06 15:32 Michael Neumann <mneumann@ntecs.de>
|
3194
|
+
|
3195
|
+
Changed:
|
3196
|
+
lib/dbi/utils.rb (1.4), "Exp", lines: +5 -5
|
3197
|
+
|
3198
|
+
extended XMLFormatter methods row and table
|
3199
|
+
|
3200
|
+
2001-06-05 22:33 Michael Neumann <mneumann@ntecs.de>
|
3201
|
+
|
3202
|
+
Changed:
|
3203
|
+
lib/dbd_pg/doc/README (1.2), "Exp", lines: +10 -8
|
3204
|
+
|
3205
|
+
adapted towards new version 0.0.5
|
3206
|
+
|
3207
|
+
2001-06-05 22:30 Michael Neumann <mneumann@ntecs.de>
|
3208
|
+
|
3209
|
+
Changed:
|
3210
|
+
ext/dbd_sybase/doc/README (1.3), "Exp", lines: +4 -1
|
3211
|
+
|
3212
|
+
outdated
|
3213
|
+
|
3214
|
+
2001-06-05 22:28 Michael Neumann <mneumann@ntecs.de>
|
3215
|
+
|
3216
|
+
Changed:
|
3217
|
+
doc/html/index.html (1.2), "Exp", lines: +196 -1
|
3218
|
+
|
3219
|
+
added content
|
3220
|
+
|
3221
|
+
2001-06-05 22:25 Michael Neumann <mneumann@ntecs.de>
|
3222
|
+
|
3223
|
+
Added:
|
3224
|
+
doc/create_html (1.1)
|
3225
|
+
doc/index.rd (1.1)
|
3226
|
+
doc/html/rubyStyle.css (1.1)
|
3227
|
+
|
3228
|
+
new README file
|
3229
|
+
|
3230
|
+
2001-06-05 22:23 Michael Neumann <mneumann@ntecs.de>
|
3231
|
+
|
3232
|
+
Changed:
|
3233
|
+
README (1.2), "Exp", lines: +1 -92
|
3234
|
+
|
3235
|
+
removed content, forward to doc/index.rd
|
3236
|
+
|
3237
|
+
2001-06-05 12:17 Michael Neumann <mneumann@ntecs.de>
|
3238
|
+
|
3239
|
+
Changed:
|
3240
|
+
examples/proxyserver.rb (1.2), "Exp", lines: +14 -5
|
3241
|
+
|
3242
|
+
improved some code
|
3243
|
+
|
3244
|
+
2001-06-05 12:14 Michael Neumann <mneumann@ntecs.de>
|
3245
|
+
|
3246
|
+
Changed:
|
3247
|
+
lib/dbd_interbase/InterBase.rb (1.2), "Exp", lines: +20 -4
|
3248
|
+
|
3249
|
+
added error handling => DBI::Error
|
3250
|
+
|
3251
|
+
2001-06-05 12:07 Michael Neumann <mneumann@ntecs.de>
|
3252
|
+
|
3253
|
+
Changed:
|
3254
|
+
lib/dbd_pg/Pg.rb (1.4), "Exp", lines: +4 -4
|
3255
|
+
|
3256
|
+
changed $! (.dup) to $!.type.to_s (to fix the DRbUnknown DBD::Proxy bug)
|
3257
|
+
|
3258
|
+
2001-06-05 12:06 Michael Neumann <mneumann@ntecs.de>
|
3259
|
+
|
3260
|
+
Changed:
|
3261
|
+
lib/dbd_mysql/Mysql.rb (1.3), "Exp", lines: +48 -12
|
3262
|
+
|
3263
|
+
added error handling -> DBI::Error
|
3264
|
+
added ?-parameter markers binding
|
3265
|
+
removed ::Mysql.quote because it didn't worked as expected
|
3266
|
+
|
3267
|
+
2001-06-05 10:28 Michael Neumann <mneumann@ntecs.de>
|
3268
|
+
|
3269
|
+
Changed:
|
3270
|
+
lib/dbd_ado/ADO.rb (1.4), "Exp", lines: +10 -3
|
3271
|
+
|
3272
|
+
fixed misbehaviour in #finish. now supports parameter markers
|
3273
|
+
|
3274
|
+
2001-06-05 09:44 Michael Neumann <mneumann@ntecs.de>
|
3275
|
+
|
3276
|
+
Changed:
|
3277
|
+
lib/dbi/utils.rb (1.3), "Exp", lines: +2 -2
|
3278
|
+
|
3279
|
+
fixed bug (one parenthese too much)
|
3280
|
+
|
3281
|
+
2001-06-04 14:24 Michael Neumann <mneumann@ntecs.de>
|
3282
|
+
|
3283
|
+
Changed:
|
3284
|
+
lib/PATHCONV (1.7), "Exp", lines: +1 -0
|
3285
|
+
|
3286
|
+
added Proxy
|
3287
|
+
|
3288
|
+
2001-06-04 14:23 Michael Neumann <mneumann@ntecs.de>
|
3289
|
+
|
3290
|
+
Added:
|
3291
|
+
lib/dbd_proxy/Proxy.rb (1.1)
|
3292
|
+
examples/proxyserver.rb (1.1)
|
3293
|
+
|
3294
|
+
initial import
|
3295
|
+
|
3296
|
+
2001-06-04 14:22 Michael Neumann <mneumann@ntecs.de>
|
3297
|
+
|
3298
|
+
Changed:
|
3299
|
+
lib/dbi/dbi.rb (1.6), "Exp", lines: +25 -6
|
3300
|
+
|
3301
|
+
added DBI.get_driver (to access the underlying DBD-Driver), needed by ProxyServer
|
3302
|
+
@@driver_map contains now arrays of DBI::DriverHandle and DBD::Driver -> modified all methods which use it
|
3303
|
+
added checks in DatabaseHandle select_one, select_all, [], []= if it is already closed -> raise exemption
|
3304
|
+
|
3305
|
+
2001-06-04 14:15 Michael Neumann <mneumann@ntecs.de>
|
3306
|
+
|
3307
|
+
Changed:
|
3308
|
+
lib/dbi/row.rb (1.5), "Exp", lines: +10 -1
|
3309
|
+
|
3310
|
+
added methods to_h, field_names (alias to column_names) and fixed typo-bug
|
3311
|
+
|
3312
|
+
2001-06-04 14:13 Michael Neumann <mneumann@ntecs.de>
|
3313
|
+
|
3314
|
+
Changed:
|
3315
|
+
lib/dbd_pg/Pg.rb (1.3), "Exp", lines: +10 -0
|
3316
|
+
|
3317
|
+
added method DatabaseHandle#tables and modified load_type_map to return CHAR's
|
3318
|
+
|
3319
|
+
2001-06-02 19:20 Rainer Perl
|
3320
|
+
|
3321
|
+
Changed:
|
3322
|
+
ext/dbd_sybase/extconf.rb (1.2), "Exp", lines: +1 -6
|
3323
|
+
|
3324
|
+
applied patch from Akinori MUSHA
|
3325
|
+
|
3326
|
+
2001-06-02 18:06 Rainer Perl
|
3327
|
+
|
3328
|
+
Added:
|
3329
|
+
doc/html/index.html (1.1)
|
3330
|
+
|
3331
|
+
added example web-index
|
3332
|
+
|
3333
|
+
2001-06-01 11:04 Michael Neumann <mneumann@ntecs.de>
|
3334
|
+
|
3335
|
+
Changed:
|
3336
|
+
lib/dbd_oracle/Oracle.rb (1.2), "Exp", lines: +117 -43
|
3337
|
+
|
3338
|
+
improved speed, fixed some bugs
|
3339
|
+
|
3340
|
+
2001-05-31 14:34 Michael Neumann <mneumann@ntecs.de>
|
3341
|
+
|
3342
|
+
Changed:
|
3343
|
+
examples/sqlsh.rb (1.5), "Exp", lines: +1 -2
|
3344
|
+
|
3345
|
+
fixed bug (rescue instead ensure), which had the consequence readline was never used
|
3346
|
+
|
3347
|
+
2001-05-31 14:18 Michael Neumann <mneumann@ntecs.de>
|
3348
|
+
|
3349
|
+
Changed:
|
3350
|
+
lib/dbd_mysql/Mysql.rb (1.2), "Exp", lines: +1 -1
|
3351
|
+
|
3352
|
+
changed in datasource, mysql to Mysql
|
3353
|
+
|
3354
|
+
2001-05-31 14:17 Michael Neumann <mneumann@ntecs.de>
|
3355
|
+
|
3356
|
+
Changed:
|
3357
|
+
lib/dbi/row.rb (1.4), "Exp", lines: +2 -0
|
3358
|
+
|
3359
|
+
|
3360
|
+
added "include Enumerable"
|
3361
|
+
|
3362
|
+
2001-05-31 14:16 Michael Neumann <mneumann@ntecs.de>
|
3363
|
+
|
3364
|
+
Changed:
|
3365
|
+
lib/PATHCONV (1.6), "Exp", lines: +1 -1
|
3366
|
+
|
3367
|
+
install wrapper together with dbi
|
3368
|
+
|
3369
|
+
2001-05-31 13:54 Michael Neumann <mneumann@ntecs.de>
|
3370
|
+
|
3371
|
+
Changed:
|
3372
|
+
lib/dbi/row.rb (1.3), "Exp", lines: +4 -2
|
3373
|
+
|
3374
|
+
fixed bug, so size_or_arr can now be nil, which creates an Array of size col_names.size
|
3375
|
+
|
3376
|
+
2001-05-31 13:53 Michael Neumann <mneumann@ntecs.de>
|
3377
|
+
|
3378
|
+
Added:
|
3379
|
+
lib/wrapper/dbi.rb (1.1)
|
3380
|
+
|
3381
|
+
initial creation
|
3382
|
+
|
3383
|
+
2001-05-31 13:53 Michael Neumann <mneumann@ntecs.de>
|
3384
|
+
|
3385
|
+
Changed:
|
3386
|
+
lib/PATHCONV (1.5), "Exp", lines: +1 -0
|
3387
|
+
|
3388
|
+
add directory wrapper which installs directly into site-ruby
|
3389
|
+
|
3390
|
+
2001-05-31 13:52 Michael Neumann <mneumann@ntecs.de>
|
3391
|
+
|
3392
|
+
Changed:
|
3393
|
+
examples/sqlsh.rb (1.4), "Exp", lines: +1 -1
|
3394
|
+
|
3395
|
+
removed double :: in DSN output
|
3396
|
+
|
3397
|
+
2001-05-31 13:28 Michael Neumann <mneumann@ntecs.de>
|
3398
|
+
|
3399
|
+
Added:
|
3400
|
+
lib/dbi/test/testdbi.rb (1.1)
|
3401
|
+
lib/dbi/test/testrow.rb (1.1)
|
3402
|
+
lib/dbi/test/testsqlbind.rb (1.1)
|
3403
|
+
lib/dbi/test/testsqlquote.rb (1.1)
|
3404
|
+
|
3405
|
+
initial import of test-cases, from Jim Weirichs Postgesql DBD
|
3406
|
+
|
3407
|
+
2001-05-31 13:27 Michael Neumann <mneumann@ntecs.de>
|
3408
|
+
|
3409
|
+
Changed:
|
3410
|
+
lib/dbi/utils.rb (1.2), "Exp", lines: +47 -1
|
3411
|
+
|
3412
|
+
|
3413
|
+
move some methods from dbi/dbi into this file
|
3414
|
+
|
3415
|
+
2001-05-31 13:26 Michael Neumann <mneumann@ntecs.de>
|
3416
|
+
|
3417
|
+
Added:
|
3418
|
+
lib/dbi/sql.rb (1.1)
|
3419
|
+
|
3420
|
+
initial creation.
|
3421
|
+
extracted from Jim Weirichs basicquote.rb, basicbind.rb and Postgresql.rb (query?)
|
3422
|
+
|
3423
|
+
2001-05-31 13:25 Michael Neumann <mneumann@ntecs.de>
|
3424
|
+
|
3425
|
+
Changed:
|
3426
|
+
lib/dbi/row.rb (1.2), "Exp", lines: +120 -83
|
3427
|
+
|
3428
|
+
use delegator to Array
|
3429
|
+
many features added, e.g dbrow["firstname", "lastname", ...] => ['Michael', 'Neumann', ...]
|
3430
|
+
passed Jims testcase
|
3431
|
+
|
3432
|
+
2001-05-31 13:23 Michael Neumann <mneumann@ntecs.de>
|
3433
|
+
|
3434
|
+
Changed:
|
3435
|
+
lib/dbi/dbi.rb (1.5), "Exp", lines: +8 -42
|
3436
|
+
|
3437
|
+
moved module Utils into file dbi/utils.rb
|
3438
|
+
use Jim Weirichs SQL::BasicQuote
|
3439
|
+
|
3440
|
+
2001-05-31 13:19 Michael Neumann <mneumann@ntecs.de>
|
3441
|
+
|
3442
|
+
Changed:
|
3443
|
+
lib/dbd_ado/ADO.rb (1.3), "Exp", lines: +2 -2
|
3444
|
+
|
3445
|
+
|
3446
|
+
use SQL.query? instead of own version
|
3447
|
+
|
3448
|
+
2001-05-31 13:18 Michael Neumann <mneumann@ntecs.de>
|
3449
|
+
|
3450
|
+
Added:
|
3451
|
+
lib/dbd_pg/test/testdbipg.rb (1.1)
|
3452
|
+
|
3453
|
+
|
3454
|
+
initial import from Jim Weirichs ruby-dbi-postgresql-28.05.2001.7.tgz
|
3455
|
+
changed Postgres to Pg
|
3456
|
+
|
3457
|
+
2001-05-31 13:17 Michael Neumann <mneumann@ntecs.de>
|
3458
|
+
|
3459
|
+
Added:
|
3460
|
+
lib/dbd_pg/doc/README (1.1)
|
3461
|
+
|
3462
|
+
|
3463
|
+
initial import from Jim Weirichs ruby-dbi-postgresql-28.05.2001.7.tgz
|
3464
|
+
|
3465
|
+
2001-05-31 13:16 Michael Neumann <mneumann@ntecs.de>
|
3466
|
+
|
3467
|
+
Changed:
|
3468
|
+
lib/dbd_pg/Pg.rb (1.2), "Exp", lines: +3 -12
|
3469
|
+
|
3470
|
+
|
3471
|
+
extracted some goodies to dbi/sql.rb
|
3472
|
+
changed Postgresql to Pg
|
3473
|
+
|
3474
|
+
2001-05-31 13:14 Michael Neumann <mneumann@ntecs.de>
|
3475
|
+
|
3476
|
+
Added:
|
3477
|
+
lib/dbd_pg/Pg.rb (1.1)
|
3478
|
+
|
3479
|
+
|
3480
|
+
initial import from Jim Weirichs ruby-dbi-postgesql-28.05.2001.7.tgz
|
3481
|
+
|
3482
|
+
2001-05-31 13:13 Michael Neumann <mneumann@ntecs.de>
|
3483
|
+
|
3484
|
+
Changed:
|
3485
|
+
lib/PATHCONV (1.4), "Exp", lines: +1 -0
|
3486
|
+
|
3487
|
+
|
3488
|
+
added dbd_pg
|
3489
|
+
|
3490
|
+
2001-05-31 10:21 Michael Neumann <mneumann@ntecs.de>
|
3491
|
+
|
3492
|
+
Changed:
|
3493
|
+
lib/dbd_ado/ADO.rb (1.2), "Exp", lines: +94 -12
|
3494
|
+
|
3495
|
+
|
3496
|
+
fixed several bugs in fetch/fetch_scroll, now has more functionality
|
3497
|
+
|
3498
|
+
2001-05-31 10:20 Michael Neumann <mneumann@ntecs.de>
|
3499
|
+
|
3500
|
+
Changed:
|
3501
|
+
lib/dbi/dbi.rb (1.4), "Exp", lines: +5 -5
|
3502
|
+
|
3503
|
+
|
3504
|
+
fixed constant multiple-assignment bug, (1..6) -> (1..6).to_a
|
3505
|
+
fixed exception-raising bug, parameters in DBI::Error now all optional
|
3506
|
+
fixed bug in fetch_scroll (rows -> row)
|
3507
|
+
|
3508
|
+
2001-05-31 10:18 Michael Neumann <mneumann@ntecs.de>
|
3509
|
+
|
3510
|
+
Changed:
|
3511
|
+
examples/sqlsh.rb (1.3), "Exp", lines: +64 -10
|
3512
|
+
|
3513
|
+
|
3514
|
+
added new commands (commit, rollback, autocommit)
|
3515
|
+
fixed readline-bug, readline -> $stdin.readline
|
3516
|
+
|
3517
|
+
2001-05-30 18:59 Michael Neumann <mneumann@ntecs.de>
|
3518
|
+
|
3519
|
+
Changed:
|
3520
|
+
lib/dbi/dbi.rb (1.3), "Exp", lines: +9 -5
|
3521
|
+
|
3522
|
+
|
3523
|
+
added StatementHandle#finished?
|
3524
|
+
added check in DatabaseHandle#execute/#prepare in block-form, if finished? before calling #finish
|
3525
|
+
changed require "x" -> require "dbi/x"
|
3526
|
+
|
3527
|
+
2001-05-30 18:43 Michael Neumann <mneumann@ntecs.de>
|
3528
|
+
|
3529
|
+
Added:
|
3530
|
+
lib/dbd_ado/ADO.rb (1.1)
|
3531
|
+
|
3532
|
+
|
3533
|
+
initial import
|
3534
|
+
|
3535
|
+
2001-05-30 18:40 Michael Neumann <mneumann@ntecs.de>
|
3536
|
+
|
3537
|
+
Changed:
|
3538
|
+
lib/PATHCONV (1.3), "Exp", lines: +1 -0
|
3539
|
+
|
3540
|
+
|
3541
|
+
added ADO entry
|
3542
|
+
|
3543
|
+
2001-05-30 18:37 Michael Neumann <mneumann@ntecs.de>
|
3544
|
+
|
3545
|
+
Changed:
|
3546
|
+
examples/sqlsh.rb (1.2), "Exp", lines: +17 -3
|
3547
|
+
|
3548
|
+
|
3549
|
+
don't rely on "readline", works now without
|
3550
|
+
|
3551
|
+
2001-05-30 12:51 Michael Neumann <mneumann@ntecs.de>
|
3552
|
+
|
3553
|
+
Added:
|
3554
|
+
examples/sqlsh.rb (1.1)
|
3555
|
+
examples/sqlsh.rb.new (1.1)
|
3556
|
+
examples/test1.pl (1.1)
|
3557
|
+
examples/test_blob.rb (1.1)
|
3558
|
+
examples/xmltest.rb (1.1)
|
3559
|
+
Changed:
|
3560
|
+
examples/test1.rb (1.2), "Exp", lines: +9 -22
|
3561
|
+
|
3562
|
+
|
3563
|
+
initial import
|
3564
|
+
|
3565
|
+
2001-05-30 12:43 Michael Neumann <mneumann@ntecs.de>
|
3566
|
+
|
3567
|
+
Changed:
|
3568
|
+
lib/dbd_mysql/doc/HISTORY (1.2), "Exp", lines: +4 -1
|
3569
|
+
lib/dbd_mysql/doc/README (1.2), "Exp", lines: +2 -2
|
3570
|
+
|
3571
|
+
|
3572
|
+
new entry
|
3573
|
+
|
3574
|
+
2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
|
3575
|
+
|
3576
|
+
Added:
|
3577
|
+
lib/dbd_oracle/Oracle.rb (1.1)
|
3578
|
+
|
3579
|
+
|
3580
|
+
initial import
|
3581
|
+
|
3582
|
+
2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
|
3583
|
+
|
3584
|
+
Added:
|
3585
|
+
lib/dbd_interbase/InterBase.rb (1.1)
|
3586
|
+
|
3587
|
+
|
3588
|
+
added new DBDs
|
3589
|
+
initial import
|
3590
|
+
initial import
|
3591
|
+
|
3592
|
+
2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
|
3593
|
+
|
3594
|
+
Added:
|
3595
|
+
lib/dbd_db2/DB2.rb (1.1)
|
3596
|
+
|
3597
|
+
|
3598
|
+
added new DBDs
|
3599
|
+
initial import
|
3600
|
+
|
3601
|
+
2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
|
3602
|
+
|
3603
|
+
Changed:
|
3604
|
+
lib/PATHCONV (1.2), "Exp", lines: +5 -2
|
3605
|
+
|
3606
|
+
|
3607
|
+
added new DBDs
|
3608
|
+
|
3609
|
+
2001-05-30 12:36 Michael Neumann <mneumann@ntecs.de>
|
3610
|
+
|
3611
|
+
Deleted:
|
3612
|
+
lib/dbd_mysql/dbd_mysql.rb (1.2)
|
3613
|
+
Added:
|
3614
|
+
lib/dbd_mysql/Mysql.rb (1.1)
|
3615
|
+
|
3616
|
+
|
3617
|
+
upgraded to new version 0.5
|
3618
|
+
|
3619
|
+
2001-05-29 11:22 Michael Neumann <mneumann@ntecs.de>
|
3620
|
+
|
3621
|
+
Changed:
|
3622
|
+
lib/dbi/dbi.rb (1.2), "Exp", lines: +852 -138
|
3623
|
+
|
3624
|
+
|
3625
|
+
almost complete rewrite of DBI by Michael Neumann
|
3626
|
+
|
3627
|
+
2001-05-29 11:16 Michael Neumann <mneumann@ntecs.de>
|
3628
|
+
|
3629
|
+
Added:
|
3630
|
+
lib/dbi/row.rb (1.1)
|
3631
|
+
lib/dbi/utils.rb (1.1)
|
3632
|
+
|
3633
|
+
|
3634
|
+
initial import
|
3635
|
+
|
3636
|
+
2001-05-08 14:05 tag dbd_sybase-0-0-3
|
3637
|
+
|
3638
|
+
2001-05-08 14:05 Rainer Perl
|
3639
|
+
|
3640
|
+
Changed:
|
3641
|
+
ext/dbd_sybase/dbd_sybase.c (1.2), "Exp", lines: +34 -39
|
3642
|
+
ext/dbd_sybase/doc/HISTORY (1.2), "Exp", lines: +3 -0
|
3643
|
+
ext/dbd_sybase/doc/README (1.2), "Exp", lines: +4 -21
|
3644
|
+
|
3645
|
+
Updated dbd_sybase (now 0.0.3)
|
3646
|
+
|
3647
|
+
2001-05-06 17:59 tag dbd_mysql-0-0-4
|
3648
|
+
|
3649
|
+
2001-05-06 17:59 tag dbd_sybase-0-0-2
|
3650
|
+
|
3651
|
+
2001-05-06 17:59 tag dbi-0-0-4
|
3652
|
+
|
3653
|
+
2001-05-06 17:59 tag start
|
3654
|
+
|
3655
|
+
2001-05-06 17:59 Rainer Perl
|
3656
|
+
|
3657
|
+
Changed:
|
3658
|
+
LICENSE (1.1.1.1), "Exp", lines: +0 -0
|
3659
|
+
README (1.1.1.1), "Exp", lines: +0 -0
|
3660
|
+
setup.rb (1.1.1.1), "Exp", lines: +0 -0
|
3661
|
+
examples/test1.rb (1.1.1.1), "Exp", lines: +0 -0
|
3662
|
+
ext/PATHCONV (1.1.1.1), "Exp", lines: +0 -0
|
3663
|
+
ext/dbd_sybase/dbd_sybase.c (1.1.1.1), "Exp", lines: +0 -0
|
3664
|
+
ext/dbd_sybase/extconf.rb (1.1.1.1), "Exp", lines: +0 -0
|
3665
|
+
ext/dbd_sybase/doc/HISTORY (1.1.1.1), "Exp", lines: +0 -0
|
3666
|
+
ext/dbd_sybase/doc/README (1.1.1.1), "Exp", lines: +0 -0
|
3667
|
+
lib/PATHCONV (1.1.1.1), "Exp", lines: +0 -0
|
3668
|
+
lib/dbd_mysql/dbd_mysql.rb (1.1.1.1), "Exp", lines: +0 -0
|
3669
|
+
lib/dbd_mysql/doc/HISTORY (1.1.1.1), "Exp", lines: +0 -0
|
3670
|
+
lib/dbd_mysql/doc/README (1.1.1.1), "Exp", lines: +0 -0
|
3671
|
+
lib/dbi/dbi.rb (1.1.1.1), "Exp", lines: +0 -0
|
3672
|
+
|
3673
|
+
Imported sources
|
3674
|
+
|
3675
|
+
2001-05-06 17:59 Rainer Perl
|
3676
|
+
|
3677
|
+
Added:
|
3678
|
+
LICENSE (1.1)
|
3679
|
+
README (1.1)
|
3680
|
+
setup.rb (1.1)
|
3681
|
+
examples/test1.rb (1.1)
|
3682
|
+
ext/PATHCONV (1.1)
|
3683
|
+
ext/dbd_sybase/dbd_sybase.c (1.1)
|
3684
|
+
ext/dbd_sybase/extconf.rb (1.1)
|
3685
|
+
ext/dbd_sybase/doc/HISTORY (1.1)
|
3686
|
+
ext/dbd_sybase/doc/README (1.1)
|
3687
|
+
lib/PATHCONV (1.1)
|
3688
|
+
lib/dbd_mysql/dbd_mysql.rb (1.1)
|
3689
|
+
lib/dbd_mysql/doc/HISTORY (1.1)
|
3690
|
+
lib/dbd_mysql/doc/README (1.1)
|
3691
|
+
lib/dbi/dbi.rb (1.1)
|
3692
|
+
|
3693
|
+
Initial revision
|
3694
|
+
|