ydbi 0.5.0

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