ydbi 0.5.2 → 0.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ruby.yml +35 -0
  3. data/.gitignore +8 -0
  4. data/.travis.yml +15 -0
  5. data/ChangeLog +339 -314
  6. data/Gemfile +5 -0
  7. data/Rakefile +10 -0
  8. data/TODO +44 -0
  9. data/bench/bench.rb +79 -0
  10. data/build/rake_task_lib.rb +186 -0
  11. data/doc/DBD_SPEC.rdoc +88 -0
  12. data/doc/DBI_SPEC.rdoc +157 -0
  13. data/doc/homepage/contact.html +62 -0
  14. data/doc/homepage/development.html +124 -0
  15. data/doc/homepage/index.html +83 -0
  16. data/doc/homepage/ruby-dbi.css +91 -0
  17. data/lib/dbd/Mysql.rb +137 -0
  18. data/lib/dbd/ODBC.rb +89 -0
  19. data/lib/dbd/Pg.rb +188 -0
  20. data/lib/dbd/SQLite.rb +97 -0
  21. data/lib/dbd/SQLite3.rb +124 -0
  22. data/lib/dbd/mysql/database.rb +405 -0
  23. data/lib/dbd/mysql/driver.rb +125 -0
  24. data/lib/dbd/mysql/statement.rb +188 -0
  25. data/lib/dbd/odbc/database.rb +128 -0
  26. data/lib/dbd/odbc/driver.rb +38 -0
  27. data/lib/dbd/odbc/statement.rb +137 -0
  28. data/lib/dbd/pg/database.rb +504 -0
  29. data/lib/dbd/pg/exec.rb +47 -0
  30. data/lib/dbd/pg/statement.rb +160 -0
  31. data/lib/dbd/pg/tuples.rb +121 -0
  32. data/lib/dbd/pg/type.rb +209 -0
  33. data/lib/dbd/sqlite/database.rb +151 -0
  34. data/lib/dbd/sqlite/statement.rb +125 -0
  35. data/lib/dbd/sqlite3/database.rb +201 -0
  36. data/lib/dbd/sqlite3/statement.rb +78 -0
  37. data/lib/dbi.rb +14 -17
  38. data/lib/dbi/utils/date.rb +7 -3
  39. data/lib/dbi/version.rb +1 -1
  40. data/prototypes/types2.rb +237 -0
  41. data/readme.md +15 -0
  42. data/setup.rb +1585 -0
  43. data/test/DBD_TESTS +50 -0
  44. data/test/TESTING +16 -0
  45. data/test/dbd/general/test_database.rb +206 -0
  46. data/test/dbd/general/test_statement.rb +326 -0
  47. data/test/dbd/general/test_types.rb +296 -0
  48. data/test/dbd/mysql/base.rb +26 -0
  49. data/test/dbd/mysql/down.sql +19 -0
  50. data/test/dbd/mysql/test_blob.rb +18 -0
  51. data/test/dbd/mysql/test_new_methods.rb +7 -0
  52. data/test/dbd/mysql/test_patches.rb +111 -0
  53. data/test/dbd/mysql/up.sql +28 -0
  54. data/test/dbd/odbc/base.rb +30 -0
  55. data/test/dbd/odbc/down.sql +19 -0
  56. data/test/dbd/odbc/test_new_methods.rb +12 -0
  57. data/test/dbd/odbc/test_ping.rb +10 -0
  58. data/test/dbd/odbc/test_statement.rb +44 -0
  59. data/test/dbd/odbc/test_transactions.rb +58 -0
  60. data/test/dbd/odbc/up.sql +33 -0
  61. data/test/dbd/postgresql/base.rb +31 -0
  62. data/test/dbd/postgresql/down.sql +31 -0
  63. data/test/dbd/postgresql/test_arrays.rb +179 -0
  64. data/test/dbd/postgresql/test_async.rb +121 -0
  65. data/test/dbd/postgresql/test_blob.rb +36 -0
  66. data/test/dbd/postgresql/test_bytea.rb +87 -0
  67. data/test/dbd/postgresql/test_ping.rb +10 -0
  68. data/test/dbd/postgresql/test_timestamp.rb +77 -0
  69. data/test/dbd/postgresql/test_transactions.rb +58 -0
  70. data/test/dbd/postgresql/testdbipg.rb +307 -0
  71. data/test/dbd/postgresql/up.sql +60 -0
  72. data/test/dbd/sqlite/base.rb +32 -0
  73. data/test/dbd/sqlite/test_database.rb +30 -0
  74. data/test/dbd/sqlite/test_driver.rb +68 -0
  75. data/test/dbd/sqlite/test_statement.rb +112 -0
  76. data/test/dbd/sqlite/up.sql +25 -0
  77. data/test/dbd/sqlite3/base.rb +32 -0
  78. data/test/dbd/sqlite3/test_database.rb +77 -0
  79. data/test/dbd/sqlite3/test_driver.rb +67 -0
  80. data/test/dbd/sqlite3/test_statement.rb +88 -0
  81. data/test/dbd/sqlite3/up.sql +33 -0
  82. data/test/dbi/tc_columninfo.rb +4 -9
  83. data/test/dbi/tc_date.rb +2 -9
  84. data/test/dbi/tc_dbi.rb +3 -9
  85. data/test/dbi/tc_row.rb +17 -23
  86. data/test/dbi/tc_sqlbind.rb +6 -7
  87. data/test/dbi/tc_statementhandle.rb +3 -4
  88. data/test/dbi/tc_time.rb +2 -8
  89. data/test/dbi/tc_timestamp.rb +2 -16
  90. data/test/dbi/tc_types.rb +5 -11
  91. data/test/ts_dbd.rb +131 -0
  92. data/ydbi.gemspec +23 -0
  93. metadata +128 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a91eedfbf31ccebd48a4d09171a4d6632857ba47
4
- data.tar.gz: 5576b02321d7eb21886b930ee1019574afc298b4
2
+ SHA256:
3
+ metadata.gz: 612fa12313d234ccc40bc70ea6d1d45932de35567308cd3067fe12081574fa6e
4
+ data.tar.gz: a86c14a91e9c6effc591e5e1cbfab53b206a3c8b76bf0fcaaea6df74f8f18c1a
5
5
  SHA512:
6
- metadata.gz: 888dbd995fc0e118d9a9f628bdb40ea0f7e2be25e911b6db779518bf2c3b5ff429cb8f9ae849d34485a246d9fe3279d66803893fa24308807edf3d7d1c02367c
7
- data.tar.gz: 7c6e766092bf3015cfe5d359a2038f2ff0151c59cf38fb299959bb0a3606110b81fa8ef1067c4185931c03f886d9ee731a95f20327725d31554d2f193268c803
6
+ metadata.gz: 98384cb09b842819df7c29bc0798538e4971d9c96250332aac735899e0f3dbb18abc696a63b4d99394cf541edc2f4e2b4ceba93db01281acb54c01b4fa27519a
7
+ data.tar.gz: 0a4194f180d61a9fd3f1611602da728e9e38aa976170fa4190d6027ad857c627c9a989396c40fd965aac782fdd8b477d6d898edaed79fd44cbe947a1775616f0
@@ -0,0 +1,35 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+ branches: [ master ]
15
+
16
+ jobs:
17
+ test:
18
+
19
+ runs-on: ubuntu-latest
20
+ strategy:
21
+ matrix:
22
+ ruby-version: ['2.6', '2.7', '3.0']
23
+
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - name: Set up Ruby
27
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
28
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
29
+ # uses: ruby/setup-ruby@v1
30
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
31
+ with:
32
+ ruby-version: ${{ matrix.ruby-version }}
33
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
34
+ - name: Run tests
35
+ run: bundle exec rake test
@@ -0,0 +1,8 @@
1
+ vendor/
2
+ coverage/
3
+ pkg/
4
+ .bundle
5
+ .ruby-version
6
+ Gemfile.lock
7
+ rdoc/
8
+ *.patch
@@ -0,0 +1,15 @@
1
+ language: ruby
2
+ cache: bundler
3
+ sudo: false
4
+ bundler_args: --without debugger
5
+ rvm:
6
+ - 2.4.1
7
+ - 2.5.0
8
+ - 3.0.0
9
+ script:
10
+ - bundle exec rake test
11
+
12
+ notifications:
13
+ email:
14
+ recipients:
15
+ - ngiger@ywesee.com
data/ChangeLog CHANGED
@@ -1,3 +1,28 @@
1
+ ## 0.5.7 - 18/01/2021
2
+
3
+ * Fixed and cleaned Unit Tests
4
+ * Avoid warning about gem.has_rdoc
5
+ * Removed unused minitest
6
+ * Upgrade to ruby 3.0
7
+
8
+ ## 0.5.6 - 27/01/2018
9
+
10
+ * Replace PGconn by PG::Connection as pg 1.0.0 dropped support for PGcon
11
+
12
+ ## 0.5.5 - 15/01/2018
13
+
14
+ * Update to require pg >= 1.0.0
15
+ * Adapt to change for pg 1.0.0, fixed bundle exec rake test
16
+ * Remove no longer used method quote_array_elements
17
+
18
+ ## 0.5.4 - 11/12/2017
19
+
20
+ * Fix running under PostgreSQL 10.
21
+
22
+ ## 0.5.3 - 18/05/2016
23
+
24
+ * Added missing require 'dbi/version' to fix errors when starting yus
25
+
1
26
  ## 0.5.2 - 10/05/2016
2
27
 
3
28
  * update ydbd-pg version to 0.5.2 to avoid an API clash
@@ -1166,7 +1191,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1166
1191
  attribute.
1167
1192
  MYSQL_to_XOPEN hash: Added LONGTEXT and BIT members, corrected length
1168
1193
  for BLOB and MEDIUMBLOB members.
1169
- * Paul DuBois: Mysql.rb. Renamed column info attributes/methods:
1194
+ * Paul DuBois: Mysql.rb. Renamed column info attributes/methods:
1170
1195
  _type, _length, _max_length, _flags are now
1171
1196
  mysql_type, mysql_length, mysql_max_length, mysql_flags
1172
1197
  * Paul DuBois:
@@ -1206,7 +1231,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1206
1231
  * Changelog style changed from diff style to summary style. If you want diffs,
1207
1232
  you can watch the CVS commits at
1208
1233
  http://ruby-dbi.rubyforge.org/statcvs/commit_log.html.
1209
- * Old RUnit tests replaced with Test/Unit style tests.
1234
+ * Old RUnit tests replaced with Test/Unit style tests.
1210
1235
  * Updated the README file to actually include useful documentation instead of
1211
1236
  pointing to an html document.
1212
1237
  * Lots of internal file/directory reorganization and renaming - none of which
@@ -1229,35 +1254,35 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1229
1254
  lib/dbi/version.rb (1.9), "Exp", lines: +2 -2
1230
1255
 
1231
1256
  increased version
1232
-
1257
+
1233
1258
  2004-05-20 10:33 Michael Neumann <mneumann@ntecs.de>
1234
1259
 
1235
1260
  Added:
1236
1261
  build/README (1.1)
1237
1262
 
1238
1263
  initial creation
1239
-
1264
+
1240
1265
  2004-05-20 10:31 Michael Neumann <mneumann@ntecs.de>
1241
1266
 
1242
1267
  Changed:
1243
1268
  build/USER (1.4), "Exp", lines: +1 -0
1244
1269
 
1245
1270
  added whole name of user andreas (for CVS changelog)
1246
-
1271
+
1247
1272
  2004-05-20 10:28 Michael Neumann <mneumann@ntecs.de>
1248
1273
 
1249
1274
  Changed:
1250
1275
  lib/dbd_odbc/ODBC.rb (1.10), "Exp", lines: +2 -2
1251
1276
 
1252
1277
  modified email and copyright
1253
-
1278
+
1254
1279
  2004-05-20 10:27 Michael Neumann <mneumann@ntecs.de>
1255
1280
 
1256
1281
  Changed:
1257
1282
  lib/dbd_odbc/ODBC.rb (1.9), "Exp", lines: +20 -3
1258
1283
 
1259
1284
  Implemented DNS-less connections, see [ruby-talk:67352] and [ruby-talk:100837]
1260
-
1285
+
1261
1286
  2004-05-19 20:31 Michael Neumann <mneumann@ntecs.de>
1262
1287
 
1263
1288
  Changed:
@@ -1269,28 +1294,28 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1269
1294
  timezones and not timezone abbreviations (e.g. now +0200 instead CEST).
1270
1295
  According to Brad Hilton, there are problems with e.g. the IDT timezone which
1271
1296
  is used in different timezones.
1272
-
1297
+
1273
1298
  2004-05-19 20:20 Michael Neumann <mneumann@ntecs.de>
1274
1299
 
1275
1300
  Changed:
1276
1301
  lib/dbi/test/testsqlquote.rb (1.8), "Exp", lines: +6 -0
1277
1302
 
1278
1303
  added testcase for quoting of Dates
1279
-
1304
+
1280
1305
  2004-05-18 13:30 Andreas Schwarz
1281
1306
 
1282
1307
  Changed:
1283
1308
  ext/dbd_sqlite/SQLite.c (1.10), "Exp", lines: +3 -2
1284
1309
 
1285
1310
  return number of changed rows in do(); closes #558
1286
-
1311
+
1287
1312
  2004-05-13 14:24 Michael Neumann <mneumann@ntecs.de>
1288
1313
 
1289
1314
  Changed:
1290
1315
  lib/dbd_oracle/Oracle.rb (1.7), "Exp", lines: +4 -3
1291
1316
 
1292
1317
  Database#tables now returns tables AND views
1293
-
1318
+
1294
1319
  2004-04-27 16:29 Michael Neumann <mneumann@ntecs.de>
1295
1320
 
1296
1321
  Changed:
@@ -1302,21 +1327,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1302
1327
 
1303
1328
  * DBI::SQL::BasicQuote::Coerce#as_timestampe: fixed conversion of timestamps when
1304
1329
  timezones like "+08:00" are given (instead "+08"). (Marek Janukowicz)
1305
-
1330
+
1306
1331
  2004-04-26 08:40 Michael Neumann <mneumann@ntecs.de>
1307
1332
 
1308
1333
  Changed:
1309
1334
  ext/dbd_sqlite/SQLite.c (1.9), "Exp", lines: +12 -2
1310
1335
 
1311
1336
  raise exception if sql statement contains NUL characters (patch by Shirai,Kaoru)
1312
-
1337
+
1313
1338
  2004-04-22 20:44 Michael Neumann <mneumann@ntecs.de>
1314
1339
 
1315
1340
  Changed:
1316
1341
  build/package.sh (1.9), "Exp", lines: +4 -5
1317
1342
 
1318
1343
  *
1319
-
1344
+
1320
1345
  2004-04-22 20:10 tag dbi-0-0-22
1321
1346
 
1322
1347
  2004-04-22 20:10 Michael Neumann <mneumann@ntecs.de>
@@ -1325,7 +1350,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1325
1350
  lib/dbi/version.rb (1.8), "Exp", lines: +2 -2
1326
1351
 
1327
1352
  new version
1328
-
1353
+
1329
1354
  2004-04-22 20:08 Michael Neumann <mneumann@ntecs.de>
1330
1355
 
1331
1356
  Changed:
@@ -1337,7 +1362,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1337
1362
  lib/dbi/test/testsqlquote.rb (1.7), "Exp", lines: +2 -2
1338
1363
 
1339
1364
  removed "don't put space before argument parentheses" warnings (ruby18)
1340
-
1365
+
1341
1366
  2004-04-22 19:59 Michael Neumann <mneumann@ntecs.de>
1342
1367
 
1343
1368
  Deleted:
@@ -1354,7 +1379,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1354
1379
  doc/index.rd (1.34), "Exp", lines: +5 -3
1355
1380
 
1356
1381
  moved to rubyforge. modified changelog generation.
1357
-
1382
+
1358
1383
  2004-04-22 19:57 Michael Neumann <mneumann@ntecs.de>
1359
1384
 
1360
1385
  Added:
@@ -1364,28 +1389,28 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1364
1389
  lib/PATHCONV (1.11), "Exp", lines: +1 -0
1365
1390
 
1366
1391
  imported FrontBase DBD (from Cail Borrell)
1367
-
1392
+
1368
1393
  2004-04-22 18:46 Michael Neumann <mneumann@ntecs.de>
1369
1394
 
1370
1395
  Changed:
1371
1396
  doc/index.rd (1.33), "Exp", lines: +18 -8
1372
1397
 
1373
1398
  moved to rubyforge
1374
-
1399
+
1375
1400
  2004-04-22 17:59 Michael Neumann <mneumann@ntecs.de>
1376
1401
 
1377
1402
  Changed:
1378
1403
  setup.rb (1.4), "Exp", lines: +1 -1
1379
1404
 
1380
1405
  remove parens warning
1381
-
1406
+
1382
1407
  2003-11-05 20:46 Michael Neumann <mneumann@ntecs.de>
1383
1408
 
1384
1409
  Changed:
1385
1410
  lib/dbi/dbi.rb (1.41), "Exp", lines: +2 -1
1386
1411
 
1387
1412
  StatementHandle#execute returns nil instead for internal use intended DBI::Row object
1388
-
1413
+
1389
1414
  2003-09-16 07:46 Michael Neumann <mneumann@ntecs.de>
1390
1415
 
1391
1416
  Changed:
@@ -1394,35 +1419,35 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1394
1419
  added methods Database#__set_notice_processor, Database#as_timestamp
1395
1420
  fixed unneeded overhead in Database#fill_array
1396
1421
  (submitted by Dennis Vshivkov)
1397
-
1422
+
1398
1423
  2003-09-14 09:35 Michael Neumann <mneumann@ntecs.de>
1399
1424
 
1400
1425
  Changed:
1401
1426
  ext/dbd_sqlite/SQLite.c (1.8), "Exp", lines: +2 -2
1402
1427
 
1403
1428
  add timezone UTC to format (MoonWolf)
1404
-
1429
+
1405
1430
  2003-09-11 20:57 Michael Neumann <mneumann@ntecs.de>
1406
1431
 
1407
1432
  Changed:
1408
1433
  lib/dbi/dbi.rb (1.40), "Exp", lines: +3 -2
1409
1434
 
1410
1435
  fixed warning (due to method redefinition)
1411
-
1436
+
1412
1437
  2003-09-11 16:10 Michael Neumann <mneumann@ntecs.de>
1413
1438
 
1414
1439
  Changed:
1415
1440
  doc/index.rd (1.32), "Exp", lines: +3 -1
1416
1441
 
1417
1442
  added contributor
1418
-
1443
+
1419
1444
  2003-09-11 16:08 Michael Neumann <mneumann@ntecs.de>
1420
1445
 
1421
1446
  Changed:
1422
1447
  lib/dbd_db2/DB2.rb (1.7), "Exp", lines: +90 -41
1423
1448
 
1424
1449
  added Database#columns method (by S. Veit)
1425
-
1450
+
1426
1451
  2003-09-07 12:44 tag dbi-0-0-21
1427
1452
 
1428
1453
  2003-09-07 12:44 Michael Neumann <mneumann@ntecs.de>
@@ -1431,7 +1456,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1431
1456
  build/USER (1.3), "Exp", lines: +2 -2
1432
1457
 
1433
1458
  modified email address
1434
-
1459
+
1435
1460
  2003-09-07 12:41 Michael Neumann <mneumann@ntecs.de>
1436
1461
 
1437
1462
  Changed:
@@ -1439,14 +1464,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1439
1464
  build/DBI-VERSIONS (1.6), "Exp", lines: +1 -0
1440
1465
 
1441
1466
  new version
1442
-
1467
+
1443
1468
  2003-09-07 12:40 Michael Neumann <mneumann@ntecs.de>
1444
1469
 
1445
1470
  Changed:
1446
1471
  build/package.sh (1.7), "Exp", lines: +7 -0
1447
1472
 
1448
1473
  added further dialog
1449
-
1474
+
1450
1475
  2003-09-07 12:36 Michael Neumann <mneumann@ntecs.de>
1451
1476
 
1452
1477
  Added:
@@ -1461,7 +1486,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1461
1486
 
1462
1487
  * fixed DBI::Row.dup bug that occures in Ruby 1.8.
1463
1488
  * added tests for this and the SQL parse bug (/)
1464
-
1489
+
1465
1490
  2003-06-10 21:40 Michael Neumann <mneumann@ntecs.de>
1466
1491
 
1467
1492
  Changed:
@@ -1469,7 +1494,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1469
1494
  lib/dbi/test/testsqlbind.rb (1.8), "Exp", lines: +7 -0
1470
1495
 
1471
1496
  fixed SQL tokenizer bug: single slashes are preserved
1472
-
1497
+
1473
1498
  2003-06-06 10:54 tag dbi-0-0-20
1474
1499
 
1475
1500
  2003-06-06 10:54 Michael Neumann <mneumann@ntecs.de>
@@ -1479,56 +1504,56 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1479
1504
  lib/dbi/version.rb (1.6), "Exp", lines: +2 -2
1480
1505
 
1481
1506
  new version
1482
-
1507
+
1483
1508
  2003-06-06 10:48 Michael Neumann <mneumann@ntecs.de>
1484
1509
 
1485
1510
  Changed:
1486
1511
  doc/index.rd (1.31), "Exp", lines: +5 -2
1487
1512
 
1488
1513
  contributors added
1489
-
1514
+
1490
1515
  2003-06-03 18:46 Michael Neumann <mneumann@ntecs.de>
1491
1516
 
1492
1517
  Changed:
1493
1518
  lib/dbi/utils.rb (1.12), "Exp", lines: +4 -3
1494
1519
 
1495
1520
  TableFormatter: convert false to "false", not "NULL" (MoonWolf)
1496
-
1521
+
1497
1522
  2003-06-03 18:42 Michael Neumann <mneumann@ntecs.de>
1498
1523
 
1499
1524
  Changed:
1500
1525
  ext/dbd_sqlite/SQLite.c (1.7), "Exp", lines: +62 -1
1501
1526
 
1502
1527
  Database#columns method added (MoonWolf)
1503
-
1528
+
1504
1529
  2003-05-31 15:52 Michael Neumann <mneumann@ntecs.de>
1505
1530
 
1506
1531
  Changed:
1507
1532
  lib/dbi/utils.rb (1.11), "Exp", lines: +2 -2
1508
1533
 
1509
1534
  fixed quoting bug ('\"' should be '"') in textconv (Brian Candler)
1510
-
1535
+
1511
1536
  2003-05-18 20:18 Michael Neumann <mneumann@ntecs.de>
1512
1537
 
1513
1538
  Changed:
1514
1539
  lib/dbd_pg/Pg.rb (1.32), "Exp", lines: +141 -24
1515
1540
 
1516
1541
  applied array patches by Oliver M. Bolzer (DBD::Pg can now handle Postgres arrays)
1517
-
1542
+
1518
1543
  2003-05-16 09:50 Michael Neumann <mneumann@ntecs.de>
1519
1544
 
1520
1545
  Changed:
1521
1546
  doc/index.rd (1.30), "Exp", lines: +12 -2
1522
1547
 
1523
1548
  new contributors; link to OCI8 DBD
1524
-
1549
+
1525
1550
  2003-05-16 09:44 Michael Neumann <mneumann@ntecs.de>
1526
1551
 
1527
1552
  Changed:
1528
1553
  lib/dbi/test/testsqlbind.rb (1.7), "Exp", lines: +12 -1
1529
1554
 
1530
1555
  added new test cases for "-" bug
1531
-
1556
+
1532
1557
  2003-05-16 09:43 Michael Neumann <mneumann@ntecs.de>
1533
1558
 
1534
1559
  Changed:
@@ -1537,14 +1562,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1537
1562
  lib/dbi/test/testsqlquote.rb (1.5), "Exp", lines: +1 -1
1538
1563
 
1539
1564
  verbose mode
1540
-
1565
+
1541
1566
  2003-05-16 09:43 Michael Neumann <mneumann@ntecs.de>
1542
1567
 
1543
1568
  Changed:
1544
1569
  lib/dbi/sql.rb (1.15), "Exp", lines: +2 -1
1545
1570
 
1546
1571
  bug fixed: "SELECT 1 - 3" was incorrectly transformed into "SELECT 1 3"
1547
-
1572
+
1548
1573
  2003-05-14 19:52 Michael Neumann <mneumann@ntecs.de>
1549
1574
 
1550
1575
  Added:
@@ -1554,7 +1579,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1554
1579
 
1555
1580
  fixed bug: Prepared statement is executed twice: once with no match, once with
1556
1581
  a match. The second case fails and segfaults.
1557
-
1582
+
1558
1583
  2003-05-14 18:36 Michael Neumann <mneumann@ntecs.de>
1559
1584
 
1560
1585
  Added:
@@ -1566,14 +1591,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1566
1591
  * fix Row Processed Count(sqlite_changes() function)
1567
1592
  * fix DBI::Timestamp quote format for Timestamp sorting
1568
1593
  before '2003-2-13 1.2.3.0' => after '2003-02-13 01:02:03'
1569
-
1594
+
1570
1595
  2003-05-11 15:29 Michael Neumann <mneumann@ntecs.de>
1571
1596
 
1572
1597
  Changed:
1573
1598
  lib/dbd_pg/Pg.rb (1.31), "Exp", lines: +25 -18
1574
1599
 
1575
1600
  added NonBlocking execution mode
1576
-
1601
+
1577
1602
  2003-05-11 15:27 Michael Neumann <mneumann@ntecs.de>
1578
1603
 
1579
1604
  Changed:
@@ -1583,21 +1608,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1583
1608
  - fraction nil by default
1584
1609
  - fractions may be of type float (as well as integer)
1585
1610
  - #to_s do not show fraction if it's nil
1586
-
1611
+
1587
1612
  2003-05-09 19:54 Michael Neumann <mneumann@ntecs.de>
1588
1613
 
1589
1614
  Changed:
1590
1615
  lib/dbi/dbi.rb (1.38), "Exp", lines: +5 -5
1591
1616
 
1592
1617
  zero-pad date/time/timestamps (classes Date/Time/Timestamp method to_s)
1593
-
1618
+
1594
1619
  2003-04-27 19:18 Michael Neumann <mneumann@ntecs.de>
1595
1620
 
1596
1621
  Changed:
1597
1622
  build/package.sh (1.6), "Exp", lines: +1 -1
1598
1623
 
1599
1624
  fixed RAA entry update address
1600
-
1625
+
1601
1626
  2003-04-27 18:51 tag dbi-0-0-19
1602
1627
 
1603
1628
  2003-04-27 18:51 Michael Neumann <mneumann@ntecs.de>
@@ -1608,21 +1633,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1608
1633
  lib/dbi/version.rb (1.5), "Exp", lines: +2 -2
1609
1634
 
1610
1635
  new version
1611
-
1636
+
1612
1637
  2003-04-27 17:42 Michael Neumann <mneumann@ntecs.de>
1613
1638
 
1614
1639
  Changed:
1615
1640
  lib/dbi/dbi.rb (1.37), "Exp", lines: +2 -2
1616
1641
 
1617
1642
  bug fix in class DBI::Time (wrong named variable)
1618
-
1643
+
1619
1644
  2003-04-27 17:40 Michael Neumann <mneumann@ntecs.de>
1620
1645
 
1621
1646
  Changed:
1622
1647
  doc/index.rd (1.29), "Exp", lines: +4 -1
1623
1648
 
1624
1649
  new contributor
1625
-
1650
+
1626
1651
  2003-04-27 17:37 Michael Neumann <mneumann@ntecs.de>
1627
1652
 
1628
1653
  Changed:
@@ -1631,14 +1656,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1631
1656
  Fixed bug in DBI::SQL::BasicQuote::Coerce#as_time
1632
1657
  Mysql time columns (like "13:32:33") could not be converted into DBI::Time objects
1633
1658
  (thanks to Tim Bates)
1634
-
1659
+
1635
1660
  2003-04-21 18:09 eliask
1636
1661
 
1637
1662
  Changed:
1638
1663
  lib/dbd_db2/DB2.rb (1.6.4.2), "Exp", lines: +34 -3
1639
1664
 
1640
1665
  DB2 driver support for columns(table)
1641
-
1666
+
1642
1667
  2003-04-02 15:42 Paul Dubois
1643
1668
 
1644
1669
  Changed:
@@ -1647,63 +1672,63 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1647
1672
 
1648
1673
  Modify transaction support to use self.do rather than @handler.query
1649
1674
  so that query execution is routed through the mutex.
1650
-
1675
+
1651
1676
  2003-02-08 02:26 Paul Dubois
1652
1677
 
1653
1678
  Changed:
1654
1679
  lib/dbi/dbi.rb (1.36), "Exp", lines: +19 -2
1655
1680
 
1656
1681
  Fix bug in case insensitive driver name lookup on case insensitive filesystems
1657
-
1682
+
1658
1683
  2003-02-08 02:03 Paul Dubois
1659
1684
 
1660
1685
  Changed:
1661
1686
  lib/dbd_mysql/Mysql.rb (1.20), "Exp", lines: +40 -3
1662
1687
 
1663
1688
  Add transaction support: commit and rollback methods, AutoCommit database handle attribute
1664
-
1689
+
1665
1690
  2003-02-08 01:46 Paul Dubois
1666
1691
 
1667
1692
  Changed:
1668
1693
  lib/dbd_mysql/Mysql.rb (1.19), "Exp", lines: +10 -10
1669
1694
 
1670
1695
  return MySQL error number on exceptions, not just error message
1671
-
1696
+
1672
1697
  2003-02-08 01:37 Paul Dubois
1673
1698
 
1674
1699
  Changed:
1675
1700
  lib/dbd_mysql/Mysql.rb (1.18), "Exp", lines: +5 -1
1676
1701
 
1677
1702
  port and flag connection parameters must be passed as numbers
1678
-
1703
+
1679
1704
  2003-02-08 00:37 Paul Dubois
1680
1705
 
1681
1706
  Changed:
1682
1707
  lib/dbd_mysql/Mysql.rb (1.17), "Exp", lines: +4 -4
1683
1708
 
1684
1709
  Do not force user to provide database name when connecting
1685
-
1710
+
1686
1711
  2003-02-01 13:51 Michael Neumann <mneumann@ntecs.de>
1687
1712
 
1688
1713
  Changed:
1689
1714
  lib/dbi/test/testsqlbind.rb (1.6), "Exp", lines: +6 -0
1690
1715
 
1691
1716
  added comment test
1692
-
1717
+
1693
1718
  2003-02-01 13:45 Michael Neumann <mneumann@ntecs.de>
1694
1719
 
1695
1720
  Changed:
1696
1721
  lib/dbi/sql.rb (1.13), "Exp", lines: +20 -5
1697
1722
 
1698
1723
  method BasicBind#tokens: added support for C-style (non-nesting) and Ada/SQL92-style comments
1699
-
1724
+
1700
1725
  2003-01-22 10:55 Michael Neumann <mneumann@ntecs.de>
1701
1726
 
1702
1727
  Changed:
1703
1728
  doc/index.rd (1.27), "Exp", lines: +6 -1
1704
1729
 
1705
1730
  added contributor, added Articles section
1706
-
1731
+
1707
1732
  2003-01-22 10:52 Michael Neumann <mneumann@ntecs.de>
1708
1733
 
1709
1734
  Changed:
@@ -1711,7 +1736,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1711
1736
  doc/DBI_SPEC (1.3), "Exp", lines: +2 -2
1712
1737
 
1713
1738
  fixed wrong email address
1714
-
1739
+
1715
1740
  2003-01-22 10:45 Michael Neumann <mneumann@ntecs.de>
1716
1741
 
1717
1742
  Changed:
@@ -1719,21 +1744,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1719
1744
  doc/DBI_SPEC (1.2), "Exp", lines: +95 -92
1720
1745
 
1721
1746
  Fix typos and formatting (by Paul DuBois).
1722
-
1747
+
1723
1748
  2002-12-28 14:36 eliask
1724
1749
 
1725
1750
  Changed:
1726
1751
  lib/dbd_db2/DB2.rb (1.6.4.1), "Exp", lines: +216 -55
1727
1752
 
1728
1753
  experimental support for BLOBs via SQLBindParameter
1729
-
1754
+
1730
1755
  2002-10-28 11:18 Michael Neumann <mneumann@ntecs.de>
1731
1756
 
1732
1757
  Changed:
1733
1758
  build/package.sh (1.5), "Exp", lines: +0 -3
1734
1759
 
1735
1760
  # Removed the removing of empty dirs. Use cvs -P option (implicit) instead.
1736
-
1761
+
1737
1762
  2002-10-28 11:05 Michael Neumann <mneumann@ntecs.de>
1738
1763
 
1739
1764
  Changed:
@@ -1741,14 +1766,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1741
1766
  build/package.sh (1.4), "Exp", lines: +1 -1
1742
1767
 
1743
1768
  *
1744
-
1769
+
1745
1770
  2002-10-25 12:48 Michael Neumann <mneumann@ntecs.de>
1746
1771
 
1747
1772
  Changed:
1748
1773
  lib/dbd_pg/Pg.rb (1.30), "Exp", lines: +2 -2
1749
1774
 
1750
1775
  rollback transactions on disconnect
1751
-
1776
+
1752
1777
  2002-10-22 15:28 tag dbi-0-0-18
1753
1778
 
1754
1779
  2002-10-22 15:28 Michael Neumann <mneumann@ntecs.de>
@@ -1757,35 +1782,35 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1757
1782
  build/DBI-VERSIONS (1.3), "Exp", lines: +1 -0
1758
1783
 
1759
1784
  *
1760
-
1785
+
1761
1786
  2002-10-22 15:25 Michael Neumann <mneumann@ntecs.de>
1762
1787
 
1763
1788
  Changed:
1764
1789
  doc/index.rd (1.26), "Exp", lines: +3 -1
1765
1790
 
1766
1791
  contributor added
1767
-
1792
+
1768
1793
  2002-10-22 15:15 Michael Neumann <mneumann@ntecs.de>
1769
1794
 
1770
1795
  Changed:
1771
1796
  lib/dbi/trace.rb (1.3), "Exp", lines: +2 -1
1772
1797
 
1773
1798
  remove warnings
1774
-
1799
+
1775
1800
  2002-10-22 15:06 Michael Neumann <mneumann@ntecs.de>
1776
1801
 
1777
1802
  Changed:
1778
1803
  lib/dbi/dbi.rb (1.35), "Exp", lines: +21 -12
1779
1804
 
1780
1805
  Driver URLs are now case-sensitive when in SAFE mode >= 1. This prevent a security error.
1781
-
1806
+
1782
1807
  2002-10-22 14:53 Michael Neumann <mneumann@ntecs.de>
1783
1808
 
1784
1809
  Changed:
1785
1810
  lib/dbd_pg/Pg.rb (1.29), "Exp", lines: +70 -10
1786
1811
 
1787
1812
  reverted to old transaction handling schema; removed usage of SET AUTOCOMMIT TO ON|OFF.
1788
-
1813
+
1789
1814
  2002-10-22 14:00 Michael Neumann <mneumann@ntecs.de>
1790
1815
 
1791
1816
  Changed:
@@ -1793,14 +1818,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1793
1818
 
1794
1819
  Use PostgreSQL specific quoting function (PGconn.quote) instead of default if available.
1795
1820
  Use PGconn.escape_bytea instead of own __escape_bytea function if available.
1796
-
1821
+
1797
1822
  2002-10-03 10:21 Michael Neumann <mneumann@ntecs.de>
1798
1823
 
1799
1824
  Changed:
1800
1825
  build/package.sh (1.3), "Exp", lines: +2 -2
1801
1826
 
1802
1827
  fixed bug
1803
-
1828
+
1804
1829
  2002-10-03 09:53 tag dbi-0-0-17
1805
1830
 
1806
1831
  2002-10-03 09:53 Michael Neumann <mneumann@ntecs.de>
@@ -1809,28 +1834,28 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1809
1834
  lib/dbi/version.rb (1.3), "Exp", lines: +2 -2
1810
1835
 
1811
1836
  new version
1812
-
1837
+
1813
1838
  2002-10-03 09:49 Michael Neumann <mneumann@ntecs.de>
1814
1839
 
1815
1840
  Added:
1816
1841
  build/package.sh (1.1)
1817
1842
 
1818
1843
  initial creation; handles all release steps
1819
-
1844
+
1820
1845
  2002-10-02 18:56 Michael Neumann <mneumann@ntecs.de>
1821
1846
 
1822
1847
  Deleted:
1823
1848
  doc/create_html (1.2)
1824
1849
 
1825
1850
  removed
1826
-
1851
+
1827
1852
  2002-10-02 18:26 Michael Neumann <mneumann@ntecs.de>
1828
1853
 
1829
1854
  Deleted:
1830
1855
  doc/html/index.html (1.26)
1831
1856
 
1832
1857
  removed
1833
-
1858
+
1834
1859
  2002-10-02 18:10 Michael Neumann <mneumann@ntecs.de>
1835
1860
 
1836
1861
  Added:
@@ -1839,7 +1864,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1839
1864
  doc/ToDo (1.1)
1840
1865
 
1841
1866
  moved from ../lib/dbi/doc
1842
-
1867
+
1843
1868
  2002-10-02 18:04 Michael Neumann <mneumann@ntecs.de>
1844
1869
 
1845
1870
  Added:
@@ -1851,98 +1876,98 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1851
1876
  build/cvs2cl (1.1)
1852
1877
 
1853
1878
  initial import
1854
-
1879
+
1855
1880
  2002-10-02 17:53 Michael Neumann <mneumann@ntecs.de>
1856
1881
 
1857
1882
  Changed:
1858
1883
  setup.rb (1.3), "Exp", lines: +7 -2
1859
1884
 
1860
1885
  install on debian-unstable into /usr/local/lib/site_ruby/<version> (by Brad Hilton)
1861
-
1886
+
1862
1887
  2002-09-26 18:41 Michael Neumann <mneumann@ntecs.de>
1863
1888
 
1864
1889
  Changed:
1865
1890
  doc/index.rd (1.24), "Exp", lines: +3 -1
1866
1891
 
1867
1892
  *
1868
-
1893
+
1869
1894
  2002-09-26 18:37 Michael Neumann <mneumann@ntecs.de>
1870
1895
 
1871
1896
  Changed:
1872
1897
  lib/dbd_mysql/Mysql.rb (1.16), "Exp", lines: +40 -8
1873
1898
 
1874
1899
  add support for coercing column values (patch by Brad Hilton)
1875
-
1900
+
1876
1901
  2002-09-26 13:40 Michael Neumann <mneumann@ntecs.de>
1877
1902
 
1878
1903
  Changed:
1879
1904
  lib/dbd_pg/Pg.rb (1.27), "Exp", lines: +9 -14
1880
1905
 
1881
1906
  removed method send_sql and inlined it's code instead (little speed improvement)
1882
-
1907
+
1883
1908
  2002-09-26 13:32 Michael Neumann <mneumann@ntecs.de>
1884
1909
 
1885
1910
  Changed:
1886
1911
  lib/dbd_pg/Pg.rb (1.26), "Exp", lines: +196 -196
1887
1912
 
1888
1913
  converted tabs to spaces
1889
-
1914
+
1890
1915
  2002-09-26 13:28 Michael Neumann <mneumann@ntecs.de>
1891
1916
 
1892
1917
  Changed:
1893
1918
  lib/dbd_pg/Pg.rb (1.25), "Exp", lines: +22 -55
1894
1919
 
1895
1920
  rewritten transaction handling (uses now Postgres' "SET AUTOCOMMIT ON|OFF")
1896
-
1921
+
1897
1922
  2002-09-13 09:10 Michael Neumann <mneumann@ntecs.de>
1898
1923
 
1899
1924
  Changed:
1900
1925
  lib/dbd_pg/Pg.rb (1.24), "Exp", lines: +13 -5
1901
1926
 
1902
1927
  fix quoting backslashes bug (Brad Hilton)
1903
-
1928
+
1904
1929
  2002-08-02 13:59 Michael Neumann <mneumann@ntecs.de>
1905
1930
 
1906
1931
  Changed:
1907
1932
  contrib/dbrc/dbrc.rb (1.2), "Exp", lines: +18 -1
1908
1933
 
1909
1934
  added dsn method, minor doc additions
1910
-
1935
+
1911
1936
  2002-08-01 19:00 Michael Neumann <mneumann@ntecs.de>
1912
1937
 
1913
1938
  Changed:
1914
1939
  lib/dbi/dbi.rb (1.34), "Exp", lines: +37 -16
1915
1940
 
1916
1941
  added Date#to_time/to_date/mday/mday= Time#to_time Timestamp#mday/mday= (Dave Thomas)
1917
-
1942
+
1918
1943
  2002-07-26 20:43 Michael Neumann <mneumann@ntecs.de>
1919
1944
 
1920
1945
  Changed:
1921
1946
  lib/dbi/dbi.rb (1.33), "Exp", lines: +3 -3
1922
1947
 
1923
1948
  Time/Date => ::Time/::Date
1924
-
1949
+
1925
1950
  2002-07-26 20:41 Michael Neumann <mneumann@ntecs.de>
1926
1951
 
1927
1952
  Changed:
1928
1953
  setup.rb (1.2), "Exp", lines: +1 -0
1929
1954
 
1930
1955
  skip CVS directories (Dave Thomas)
1931
-
1956
+
1932
1957
  2002-07-26 18:14 Michael Neumann <mneumann@ntecs.de>
1933
1958
 
1934
1959
  Changed:
1935
1960
  doc/html/index.html (1.25), "Exp", lines: +23 -15
1936
1961
 
1937
1962
  *
1938
-
1963
+
1939
1964
  2002-07-26 18:13 Michael Neumann <mneumann@ntecs.de>
1940
1965
 
1941
1966
  Changed:
1942
1967
  doc/index.rd (1.23), "Exp", lines: +5 -1
1943
1968
 
1944
1969
  added contributors
1945
-
1970
+
1946
1971
  2002-07-26 18:12 Michael Neumann <mneumann@ntecs.de>
1947
1972
 
1948
1973
  Added:
@@ -1950,21 +1975,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1950
1975
  contrib/dbrc/dbrc.rb (1.1)
1951
1976
 
1952
1977
  initial import
1953
-
1978
+
1954
1979
  2002-07-26 17:56 Michael Neumann <mneumann@ntecs.de>
1955
1980
 
1956
1981
  Changed:
1957
1982
  lib/dbd_pg/Pg.rb (1.23), "Exp", lines: +15 -11
1958
1983
 
1959
1984
  enhanced conversion: default is to_str, added timestamp (with/without timezone)
1960
-
1985
+
1961
1986
  2002-07-26 17:51 Michael Neumann <mneumann@ntecs.de>
1962
1987
 
1963
1988
  Changed:
1964
1989
  lib/dbi/dbi.rb (1.32), "Exp", lines: +18 -4
1965
1990
 
1966
1991
  added methods Timestamp#to_time/to_date (Dave Thomas)
1967
-
1992
+
1968
1993
  2002-07-03 20:09 tag dbi-0-0-16
1969
1994
 
1970
1995
  2002-07-03 20:09 Michael Neumann <mneumann@ntecs.de>
@@ -1973,35 +1998,35 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
1973
1998
  lib/dbi/version.rb (1.2), "Exp", lines: +2 -2
1974
1999
 
1975
2000
  new version
1976
-
2001
+
1977
2002
  2002-07-03 20:08 Michael Neumann <mneumann@ntecs.de>
1978
2003
 
1979
2004
  Changed:
1980
2005
  doc/html/index.html (1.24), "Exp", lines: +19 -15
1981
2006
 
1982
2007
  *
1983
-
2008
+
1984
2009
  2002-07-03 20:07 Michael Neumann <mneumann@ntecs.de>
1985
2010
 
1986
2011
  Changed:
1987
2012
  doc/index.rd (1.22), "Exp", lines: +3 -2
1988
2013
 
1989
2014
  added contributor
1990
-
2015
+
1991
2016
  2002-07-03 19:56 Michael Neumann <mneumann@ntecs.de>
1992
2017
 
1993
2018
  Changed:
1994
2019
  lib/dbd_pg/Pg.rb (1.22), "Exp", lines: +37 -8
1995
2020
 
1996
2021
  added Statement#fetch_scroll (patch by Stephen Davies)
1997
-
2022
+
1998
2023
  2002-07-03 19:24 Michael Neumann <mneumann@ntecs.de>
1999
2024
 
2000
2025
  Changed:
2001
2026
  lib/dbi/dbi.rb (1.31), "Exp", lines: +10 -1
2002
2027
 
2003
2028
  Added StatementHandle#[] and #[]=. Updated DBI and DBD specs.
2004
-
2029
+
2005
2030
  2002-07-03 19:22 Michael Neumann <mneumann@ntecs.de>
2006
2031
 
2007
2032
  Changed:
@@ -2010,14 +2035,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2010
2035
  Fixed semantic of method Statement#rows (affects also Database#do):
2011
2036
  Now returns the Row Processed Count instead of the number of rows in the result.
2012
2037
  The old behaviour is still available through method Statement#['pg_row_count'].
2013
-
2038
+
2014
2039
  2002-07-03 16:51 Michael Neumann <mneumann@ntecs.de>
2015
2040
 
2016
2041
  Changed:
2017
2042
  doc/html/index.html (1.23), "Exp", lines: +1 -1
2018
2043
 
2019
2044
  *
2020
-
2045
+
2021
2046
  2002-07-03 16:48 Michael Neumann <mneumann@ntecs.de>
2022
2047
 
2023
2048
  Changed:
@@ -2040,21 +2065,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2040
2065
  LICENSE (1.2), "Exp", lines: +22 -339
2041
2066
 
2042
2067
  license changed from GNU GPL to BSD
2043
-
2068
+
2044
2069
  2002-06-13 15:45 Michael Neumann <mneumann@ntecs.de>
2045
2070
 
2046
2071
  Added:
2047
2072
  lib/dbd_pg/test/test_bytea.rb (1.1)
2048
2073
 
2049
2074
  initial creation
2050
-
2075
+
2051
2076
  2002-06-13 15:45 Michael Neumann <mneumann@ntecs.de>
2052
2077
 
2053
2078
  Changed:
2054
2079
  lib/dbd_pg/Pg.rb (1.19), "Exp", lines: +35 -4
2055
2080
 
2056
2081
  added method Database#__encode_bytea; decode values of type bytea to string
2057
-
2082
+
2058
2083
  2002-05-21 18:52 tag dbi-0-0-15
2059
2084
 
2060
2085
  2002-05-21 18:52 Michael Neumann <mneumann@ntecs.de>
@@ -2063,21 +2088,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2063
2088
  lib/dbd_mysql/Mysql.rb (1.14), "Exp", lines: +9 -4
2064
2089
 
2065
2090
  added driver specific method Database#__insert_id
2066
-
2091
+
2067
2092
  2002-05-21 18:41 Michael Neumann <mneumann@ntecs.de>
2068
2093
 
2069
2094
  Changed:
2070
2095
  lib/dbi/dbi.rb (1.29), "Exp", lines: +2 -1
2071
2096
 
2072
2097
  explicitly initialize @trace_mode and @trace_output in Handle#initialize (omits disturbing warning messages)
2073
-
2098
+
2074
2099
  2002-05-21 18:36 Michael Neumann <mneumann@ntecs.de>
2075
2100
 
2076
2101
  Added:
2077
2102
  examples/trace_test.rb (1.1)
2078
2103
 
2079
2104
  initial import
2080
-
2105
+
2081
2106
  2002-05-21 18:33 Michael Neumann <mneumann@ntecs.de>
2082
2107
 
2083
2108
  Added:
@@ -2086,7 +2111,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2086
2111
  lib/dbi/dbi.rb (1.28), "Exp", lines: +3 -5
2087
2112
 
2088
2113
  moved VERSION from dbi.rb to version.rb
2089
-
2114
+
2090
2115
  2002-05-14 18:07 tag dbi-0-0-14
2091
2116
 
2092
2117
  2002-05-14 18:07 Michael Neumann <mneumann@ntecs.de>
@@ -2095,7 +2120,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2095
2120
  lib/dbi/dbi.rb (1.27), "Exp", lines: +3 -3
2096
2121
 
2097
2122
  updated version
2098
-
2123
+
2099
2124
  2002-05-14 18:03 Michael Neumann <mneumann@ntecs.de>
2100
2125
 
2101
2126
  Changed:
@@ -2104,21 +2129,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2104
2129
  fixed bug: method #do and #execute both set query_with_result of the same
2105
2130
  underlying database object. This results in errors if you mix both method
2106
2131
  calls (not neccessarily called concurrently). Solution: Mutex.
2107
-
2132
+
2108
2133
  2002-04-17 13:43 Michael Neumann <mneumann@ntecs.de>
2109
2134
 
2110
2135
  Changed:
2111
2136
  doc/index.rd (1.20), "Exp", lines: +4 -2
2112
2137
 
2113
2138
  added contributor
2114
-
2139
+
2115
2140
  2002-04-17 13:38 Michael Neumann <mneumann@ntecs.de>
2116
2141
 
2117
2142
  Changed:
2118
2143
  lib/dbd_pg/Pg.rb (1.18), "Exp", lines: +4 -3
2119
2144
 
2120
2145
  cache calls to PGResult#result in class Tuples (by James F.Hranicky); which increases performance around factor 100.
2121
-
2146
+
2122
2147
  2002-04-16 20:38 tag dbi-0-0-13
2123
2148
 
2124
2149
  2002-04-16 20:38 Michael Neumann <mneumann@ntecs.de>
@@ -2128,35 +2153,35 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2128
2153
  doc/html/index.html (1.21), "Exp", lines: +20 -16
2129
2154
 
2130
2155
  *
2131
-
2156
+
2132
2157
  2002-04-16 20:25 Michael Neumann <mneumann@ntecs.de>
2133
2158
 
2134
2159
  Changed:
2135
2160
  doc/html/index.html (1.20), "Exp", lines: +40 -99
2136
2161
 
2137
2162
  *
2138
-
2163
+
2139
2164
  2002-04-16 20:24 Michael Neumann <mneumann@ntecs.de>
2140
2165
 
2141
2166
  Changed:
2142
2167
  doc/index.rd (1.18), "Exp", lines: +16 -44
2143
2168
 
2144
2169
  updates links to sf.net
2145
-
2170
+
2146
2171
  2002-04-16 20:24 Michael Neumann <mneumann@ntecs.de>
2147
2172
 
2148
2173
  Added:
2149
2174
  doc/sf_logo.html (1.1)
2150
2175
 
2151
2176
  initial import
2152
-
2177
+
2153
2178
  2002-02-06 18:05 Michael Neumann <mneumann@ntecs.de>
2154
2179
 
2155
2180
  Changed:
2156
2181
  lib/dbd_odbc/ODBC.rb (1.7), "Exp", lines: +5 -4
2157
2182
 
2158
2183
  fixed bug in method columns
2159
-
2184
+
2160
2185
  2002-02-06 17:27 Michael Neumann <mneumann@ntecs.de>
2161
2186
 
2162
2187
  Changed:
@@ -2164,28 +2189,28 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2164
2189
 
2165
2190
  upgraded to DBD API 0.2
2166
2191
  fixed bug (checking version numbers)
2167
-
2192
+
2168
2193
  2002-02-06 17:26 Michael Neumann <mneumann@ntecs.de>
2169
2194
 
2170
2195
  Changed:
2171
2196
  lib/dbd_proxy/Proxy.rb (1.7), "Exp", lines: +6 -7
2172
2197
 
2173
2198
  upgraded to DBD API 0.2
2174
-
2199
+
2175
2200
  2002-02-06 14:24 Michael Neumann <mneumann@ntecs.de>
2176
2201
 
2177
2202
  Changed:
2178
2203
  lib/dbi/sql.rb (1.12), "Exp", lines: +2 -2
2179
2204
 
2180
2205
  method SQL::BasicQuote::Coerce::as_timestamp: return nil if str is empty (Sean Chittenden)
2181
-
2206
+
2182
2207
  2002-01-04 11:54 Michael Neumann <mneumann@ntecs.de>
2183
2208
 
2184
2209
  Changed:
2185
2210
  lib/dbi/dbi.rb (1.26), "Exp", lines: +2 -2
2186
2211
 
2187
2212
  new version
2188
-
2213
+
2189
2214
  2002-01-04 11:52 Michael Neumann <mneumann@ntecs.de>
2190
2215
 
2191
2216
  Changed:
@@ -2193,21 +2218,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2193
2218
  lib/dbd_pg/Pg.rb (1.17), "Exp", lines: +1 -6
2194
2219
 
2195
2220
  fixed bind_param bug by removing method bind_params
2196
-
2221
+
2197
2222
  2002-01-04 11:52 Michael Neumann <mneumann@ntecs.de>
2198
2223
 
2199
2224
  Changed:
2200
2225
  test/testdbi.rb (1.4), "Exp", lines: +13 -1
2201
2226
 
2202
2227
  added test-case for bind_param bug (only in Mysql and Pg driver)
2203
-
2228
+
2204
2229
  2002-01-02 00:54 Michael Neumann <mneumann@ntecs.de>
2205
2230
 
2206
2231
  Changed:
2207
2232
  lib/dbd_pg/Pg.rb (1.16), "Exp", lines: +1 -5
2208
2233
 
2209
2234
  removed duplicate definition for the [] accessor method (Sean Chittenden)
2210
-
2235
+
2211
2236
  2001-12-28 14:07 tag dbi-0-0-12
2212
2237
 
2213
2238
  2001-12-28 14:07 Michael Neumann <mneumann@ntecs.de>
@@ -2216,77 +2241,77 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2216
2241
  examples/xmlgen.rb (1.1)
2217
2242
 
2218
2243
  initial import
2219
-
2244
+
2220
2245
  2001-12-28 13:19 Michael Neumann <mneumann@ntecs.de>
2221
2246
 
2222
2247
  Changed:
2223
2248
  lib/dbd_sqlrelay/SQLRelay.rb (1.3), "Exp", lines: +128 -45
2224
2249
 
2225
2250
  updated version by David Muse <david.muse@zapmedia.com>
2226
-
2251
+
2227
2252
  2001-12-28 13:05 Michael Neumann <mneumann@ntecs.de>
2228
2253
 
2229
2254
  Added:
2230
2255
  lib/dbi/test/testsqlcoerce.rb (1.1)
2231
2256
 
2232
2257
  initial creation
2233
-
2258
+
2234
2259
  2001-12-28 10:18 Michael Neumann <mneumann@ntecs.de>
2235
2260
 
2236
2261
  Changed:
2237
2262
  doc/html/index.html (1.19), "Exp", lines: +45 -24
2238
2263
 
2239
2264
  *
2240
-
2265
+
2241
2266
  2001-12-28 10:18 Michael Neumann <mneumann@ntecs.de>
2242
2267
 
2243
2268
  Changed:
2244
2269
  doc/index.rd (1.17), "Exp", lines: +2 -2
2245
2270
 
2246
2271
  fixed doc
2247
-
2272
+
2248
2273
  2001-12-28 00:54 Michael Neumann <mneumann@ntecs.de>
2249
2274
 
2250
2275
  Changed:
2251
2276
  lib/dbi/sql.rb (1.11), "Exp", lines: +6 -1
2252
2277
 
2253
2278
  DBI::SQL::BasicQuote::Coerce: don't try to convert nil; instead return nil in this case
2254
-
2279
+
2255
2280
  2001-12-14 15:16 Michael Neumann <mneumann@ntecs.de>
2256
2281
 
2257
2282
  Changed:
2258
2283
  doc/index.rd (1.16), "Exp", lines: +17 -4
2259
2284
 
2260
2285
  fixed doc-bug
2261
-
2286
+
2262
2287
  2001-12-02 17:23 Michael Neumann <mneumann@ntecs.de>
2263
2288
 
2264
2289
  Changed:
2265
2290
  lib/dbd_pg/Pg.rb (1.15), "Exp", lines: +8 -4
2266
2291
 
2267
2292
  fixed bug (displayed wrong default values) in method columns
2268
-
2293
+
2269
2294
  2001-11-26 00:12 Michael Neumann <mneumann@ntecs.de>
2270
2295
 
2271
2296
  Changed:
2272
2297
  lib/dbd_oracle/Oracle.rb (1.5), "Exp", lines: +95 -7
2273
2298
 
2274
2299
  included Jim Menards columns methods
2275
-
2300
+
2276
2301
  2001-11-25 23:26 Michael Neumann <mneumann@ntecs.de>
2277
2302
 
2278
2303
  Changed:
2279
2304
  lib/dbd_oracle/Oracle.rb (1.4), "Exp", lines: +17 -3
2280
2305
 
2281
2306
  implemented ?-style parameter markers
2282
-
2307
+
2283
2308
  2001-11-25 23:25 Michael Neumann <mneumann@ntecs.de>
2284
2309
 
2285
2310
  Changed:
2286
2311
  lib/dbi/sql.rb (1.10), "Exp", lines: +4 -2
2287
2312
 
2288
2313
  added attribute accessor for unbound in class PreparedStatement
2289
-
2314
+
2290
2315
  2001-11-22 15:20 Michael Neumann <mneumann@ntecs.de>
2291
2316
 
2292
2317
  Changed:
@@ -2295,7 +2320,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2295
2320
  added method bind_params
2296
2321
  do no more call commit/rollback if not in transaction
2297
2322
  use class SQL::PreparedStatement
2298
-
2323
+
2299
2324
  2001-11-22 14:27 Michael Neumann <mneumann@ntecs.de>
2300
2325
 
2301
2326
  Changed:
@@ -2304,14 +2329,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2304
2329
  ext/dbd_sqlite/extconf.rb (1.3), "Exp", lines: +4 -1
2305
2330
 
2306
2331
  added type conversion
2307
-
2332
+
2308
2333
  2001-11-22 14:27 Michael Neumann <mneumann@ntecs.de>
2309
2334
 
2310
2335
  Changed:
2311
2336
  bin/PATHCONV (1.2), "Exp", lines: +1 -0
2312
2337
 
2313
2338
  added proxyserver
2314
-
2339
+
2315
2340
  2001-11-22 14:26 Michael Neumann <mneumann@ntecs.de>
2316
2341
 
2317
2342
  Changed:
@@ -2319,28 +2344,28 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2319
2344
  ext/dbd_sqlite/extconf.rb (1.4), "Exp", lines: +1 -4
2320
2345
 
2321
2346
  *
2322
-
2347
+
2323
2348
  2001-11-22 14:25 Michael Neumann <mneumann@ntecs.de>
2324
2349
 
2325
2350
  Changed:
2326
2351
  lib/dbi/test/testsqlbind.rb (1.5), "Exp", lines: +54 -0
2327
2352
 
2328
2353
  added test for class PreparedStatement
2329
-
2354
+
2330
2355
  2001-11-22 14:25 Michael Neumann <mneumann@ntecs.de>
2331
2356
 
2332
2357
  Changed:
2333
2358
  lib/dbi/dbi.rb (1.25), "Exp", lines: +31 -8
2334
2359
 
2335
2360
  added constant SQL_TYPE_NAMES, for SQL_XXX constant to SQL type name mapping
2336
-
2361
+
2337
2362
  2001-11-22 14:23 Michael Neumann <mneumann@ntecs.de>
2338
2363
 
2339
2364
  Changed:
2340
2365
  lib/dbi/sql.rb (1.9), "Exp", lines: +60 -2
2341
2366
 
2342
2367
  added class PreparedStatement
2343
-
2368
+
2344
2369
  2001-11-22 14:21 Michael Neumann <mneumann@ntecs.de>
2345
2370
 
2346
2371
  Changed:
@@ -2349,21 +2374,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2349
2374
  fixed tables
2350
2375
  added ping, columns
2351
2376
  extended column_info
2352
-
2377
+
2353
2378
  2001-11-22 14:19 Michael Neumann <mneumann@ntecs.de>
2354
2379
 
2355
2380
  Changed:
2356
2381
  lib/dbd_mysql/Mysql.rb (1.11), "Exp", lines: +13 -19
2357
2382
 
2358
2383
  use SQL::PreparedStatement to improve speed
2359
-
2384
+
2360
2385
  2001-11-21 15:03 Michael Neumann <mneumann@ntecs.de>
2361
2386
 
2362
2387
  Changed:
2363
2388
  ext/dbd_sqlite/SQLite.c (1.2), "Exp", lines: +219 -18
2364
2389
 
2365
2390
  added conversion routine
2366
-
2391
+
2367
2392
  2001-11-21 15:01 Michael Neumann <mneumann@ntecs.de>
2368
2393
 
2369
2394
  Added:
@@ -2374,49 +2399,49 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2374
2399
  ext/dbd_sqlite/README (1.1)
2375
2400
 
2376
2401
  initial import
2377
-
2402
+
2378
2403
  2001-11-17 17:17 Michael Neumann <mneumann@ntecs.de>
2379
2404
 
2380
2405
  Added:
2381
2406
  bin/proxyserver/proxyserver.rb (1.1)
2382
2407
 
2383
2408
  moved from examples/
2384
-
2409
+
2385
2410
  2001-11-17 17:17 Michael Neumann <mneumann@ntecs.de>
2386
2411
 
2387
2412
  Deleted:
2388
2413
  examples/proxyserver.rb (1.6)
2389
2414
 
2390
2415
  moved to bin/proxyserver
2391
-
2416
+
2392
2417
  2001-11-17 15:53 Michael Neumann <mneumann@ntecs.de>
2393
2418
 
2394
2419
  Changed:
2395
2420
  bin/commandline/sqlsh.rb (1.2), "Exp", lines: +41 -20
2396
2421
 
2397
2422
  command-line option --file
2398
-
2423
+
2399
2424
  2001-11-17 14:55 Michael Neumann <mneumann@ntecs.de>
2400
2425
 
2401
2426
  Added:
2402
2427
  bin/PATHCONV (1.1)
2403
2428
 
2404
2429
  initial import
2405
-
2430
+
2406
2431
  2001-11-17 14:54 Michael Neumann <mneumann@ntecs.de>
2407
2432
 
2408
2433
  Added:
2409
2434
  bin/commandline/sqlsh.rb (1.1)
2410
2435
 
2411
2436
  refactored code; new feature irb/rb; moved from examples dir
2412
-
2437
+
2413
2438
  2001-11-17 14:52 Michael Neumann <mneumann@ntecs.de>
2414
2439
 
2415
2440
  Deleted:
2416
2441
  examples/sqlsh.rb (1.11)
2417
2442
 
2418
2443
  moved to bin/commandline
2419
-
2444
+
2420
2445
  2001-11-14 14:11 tag dbi-0-0-11
2421
2446
 
2422
2447
  2001-11-14 14:11 Michael Neumann <mneumann@ntecs.de>
@@ -2425,21 +2450,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2425
2450
  lib/dbd_pg/test/test_blob.rb (1.2), "Exp", lines: +37 -4
2426
2451
 
2427
2452
  improved blob test
2428
-
2453
+
2429
2454
  2001-11-14 14:04 Michael Neumann <mneumann@ntecs.de>
2430
2455
 
2431
2456
  Changed:
2432
2457
  ext/dbd_sqlite/extconf.rb (1.2), "Exp", lines: +2 -2
2433
2458
 
2434
2459
  fixed
2435
-
2460
+
2436
2461
  2001-11-14 14:04 Michael Neumann <mneumann@ntecs.de>
2437
2462
 
2438
2463
  Changed:
2439
2464
  doc/html/index.html (1.18), "Exp", lines: +2 -2
2440
2465
 
2441
2466
  *
2442
-
2467
+
2443
2468
  2001-11-14 14:00 Michael Neumann <mneumann@ntecs.de>
2444
2469
 
2445
2470
  Changed:
@@ -2448,21 +2473,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2448
2473
  doc/index.rd (1.15), "Exp", lines: +2 -2
2449
2474
 
2450
2475
  *
2451
-
2476
+
2452
2477
  2001-11-14 13:41 Michael Neumann <mneumann@ntecs.de>
2453
2478
 
2454
2479
  Changed:
2455
2480
  lib/dbi/dbi.rb (1.24), "Exp", lines: +2 -2
2456
2481
 
2457
2482
  DatabaseError.new without arguments
2458
-
2483
+
2459
2484
  2001-11-14 13:38 Michael Neumann <mneumann@ntecs.de>
2460
2485
 
2461
2486
  Changed:
2462
2487
  ext/PATHCONV (1.2), "Exp", lines: +2 -1
2463
2488
 
2464
2489
  new dbd
2465
-
2490
+
2466
2491
  2001-11-14 13:38 Michael Neumann <mneumann@ntecs.de>
2467
2492
 
2468
2493
  Added:
@@ -2470,21 +2495,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2470
2495
  ext/dbd_sqlite/extconf.rb (1.1)
2471
2496
 
2472
2497
  initial import
2473
-
2498
+
2474
2499
  2001-11-13 14:53 Michael Neumann <mneumann@ntecs.de>
2475
2500
 
2476
2501
  Changed:
2477
2502
  examples/sqlsh.rb (1.10), "Exp", lines: +2 -2
2478
2503
 
2479
2504
  abort table output with "a"
2480
-
2505
+
2481
2506
  2001-11-13 14:52 Michael Neumann <mneumann@ntecs.de>
2482
2507
 
2483
2508
  Changed:
2484
2509
  doc/html/index.html (1.16), "Exp", lines: +0 -0
2485
2510
 
2486
2511
  *
2487
-
2512
+
2488
2513
  2001-11-13 14:25 Michael Neumann <mneumann@ntecs.de>
2489
2514
 
2490
2515
  Changed:
@@ -2492,7 +2517,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2492
2517
 
2493
2518
  fixed quote
2494
2519
  fixed finish (method do => no result handle => nil.free => exception)
2495
-
2520
+
2496
2521
  2001-11-13 14:25 tag dbi-0-0-10
2497
2522
 
2498
2523
  2001-11-13 14:25 Michael Neumann <mneumann@ntecs.de>
@@ -2501,21 +2526,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2501
2526
  lib/dbd_mysql/test/blob_test.rb (1.1)
2502
2527
 
2503
2528
  initial import
2504
-
2529
+
2505
2530
  2001-11-13 11:31 Michael Neumann <mneumann@ntecs.de>
2506
2531
 
2507
2532
  Changed:
2508
2533
  lib/dbd_odbc/ODBC.rb (1.5), "Exp", lines: +2 -2
2509
2534
 
2510
2535
  small fix
2511
-
2536
+
2512
2537
  2001-11-13 11:29 Michael Neumann <mneumann@ntecs.de>
2513
2538
 
2514
2539
  Changed:
2515
2540
  doc/html/index.html (1.15), "Exp", lines: +36 -20
2516
2541
 
2517
2542
  *
2518
-
2543
+
2519
2544
  2001-11-13 11:29 Michael Neumann <mneumann@ntecs.de>
2520
2545
 
2521
2546
  Changed:
@@ -2523,42 +2548,42 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2523
2548
  lib/dbi/dbi.rb (1.23), "Exp", lines: +3 -3
2524
2549
 
2525
2550
  new version
2526
-
2551
+
2527
2552
  2001-11-13 11:00 Michael Neumann <mneumann@ntecs.de>
2528
2553
 
2529
2554
  Changed:
2530
2555
  lib/dbd_pg/Pg.rb (1.13), "Exp", lines: +8 -4
2531
2556
 
2532
2557
  improved Database#ping
2533
-
2558
+
2534
2559
  2001-11-13 11:00 Michael Neumann <mneumann@ntecs.de>
2535
2560
 
2536
2561
  Added:
2537
2562
  lib/dbd_pg/test/test_ping.rb (1.1)
2538
2563
 
2539
2564
  initial import
2540
-
2565
+
2541
2566
  2001-11-12 20:27 Michael Neumann <mneumann@ntecs.de>
2542
2567
 
2543
2568
  Changed:
2544
2569
  lib/PATHCONV (1.10), "Exp", lines: +1 -0
2545
2570
 
2546
2571
  added SQLRelay
2547
-
2572
+
2548
2573
  2001-11-12 20:25 Michael Neumann <mneumann@ntecs.de>
2549
2574
 
2550
2575
  Changed:
2551
2576
  lib/dbd_sqlrelay/SQLRelay.rb (1.2), "Exp", lines: +69 -22
2552
2577
 
2553
2578
  added AutoCommit, added fetch_scroll...
2554
-
2579
+
2555
2580
  2001-11-12 19:40 Michael Neumann <mneumann@ntecs.de>
2556
2581
 
2557
2582
  Added:
2558
2583
  lib/dbd_pg/test/test_blob.rb (1.1)
2559
2584
 
2560
2585
  initial creation
2561
-
2586
+
2562
2587
  2001-11-12 19:37 Michael Neumann <mneumann@ntecs.de>
2563
2588
 
2564
2589
  Changed:
@@ -2567,28 +2592,28 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2567
2592
  added Databaseattribute: pg_client_encoding
2568
2593
  added driver specific functions in Database: blob_import, blob_export, blob_create, blob_open, blob_unlink and blob_read
2569
2594
  convert DBI::Binary objects to OID's and insert the content as BLOB
2570
-
2595
+
2571
2596
  2001-11-11 20:57 Michael Neumann <mneumann@ntecs.de>
2572
2597
 
2573
2598
  Added:
2574
2599
  lib/dbd_sqlrelay/SQLRelay.rb (1.1)
2575
2600
 
2576
2601
  initial import
2577
-
2602
+
2578
2603
  2001-11-09 16:08 Michael Neumann <mneumann@ntecs.de>
2579
2604
 
2580
2605
  Changed:
2581
2606
  lib/dbd_mysql/Mysql.rb (1.9), "Exp", lines: +3 -3
2582
2607
 
2583
2608
  modified method column_info
2584
-
2609
+
2585
2610
  2001-11-09 01:32 Michael Neumann <mneumann@ntecs.de>
2586
2611
 
2587
2612
  Changed:
2588
2613
  lib/dbd_db2/DB2.rb (1.5), "Exp", lines: +59 -30
2589
2614
 
2590
2615
  fixed several bugs
2591
-
2616
+
2592
2617
  2001-11-08 23:45 Michael Neumann <mneumann@ntecs.de>
2593
2618
 
2594
2619
  Added:
@@ -2598,21 +2623,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2598
2623
  test/michael/pg/teardown.sh (1.1)
2599
2624
 
2600
2625
  initial import
2601
-
2626
+
2602
2627
  2001-11-08 23:45 Michael Neumann <mneumann@ntecs.de>
2603
2628
 
2604
2629
  Changed:
2605
2630
  test/testdbi.rb (1.3), "Exp", lines: +1 -1
2606
2631
 
2607
2632
  fixed bug (skaro)
2608
-
2633
+
2609
2634
  2001-11-08 23:31 Michael Neumann <mneumann@ntecs.de>
2610
2635
 
2611
2636
  Changed:
2612
2637
  lib/dbi/sql.rb (1.8), "Exp", lines: +2 -2
2613
2638
 
2614
2639
  corrected type prefix (DBI::)
2615
-
2640
+
2616
2641
  2001-11-08 23:30 Michael Neumann <mneumann@ntecs.de>
2617
2642
 
2618
2643
  Changed:
@@ -2620,70 +2645,70 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2620
2645
  lib/dbi/test/testsqlquote.rb (1.4), "Exp", lines: +1 -1
2621
2646
 
2622
2647
  fixed require (dbi instead of just sql)
2623
-
2648
+
2624
2649
  2001-11-08 22:39 Michael Neumann <mneumann@ntecs.de>
2625
2650
 
2626
2651
  Changed:
2627
2652
  lib/dbi/utils.rb (1.9), "Exp", lines: +9 -3
2628
2653
 
2629
2654
  TableFormatter#ascii modified
2630
-
2655
+
2631
2656
  2001-11-08 22:38 Michael Neumann <mneumann@ntecs.de>
2632
2657
 
2633
2658
  Changed:
2634
2659
  lib/dbd_pg/Pg.rb (1.11), "Exp", lines: +21 -7
2635
2660
 
2636
2661
  method columns: extract default value
2637
-
2662
+
2638
2663
  2001-11-08 21:51 Michael Neumann <mneumann@ntecs.de>
2639
2664
 
2640
2665
  Changed:
2641
2666
  examples/sqlsh.rb (1.9), "Exp", lines: +66 -12
2642
2667
 
2643
2668
  added commands \dt (describe table), \s (short select) and \pl (page length)
2644
-
2669
+
2645
2670
  2001-10-30 12:51 Michael Neumann <mneumann@ntecs.de>
2646
2671
 
2647
2672
  Changed:
2648
2673
  doc/html/index.html (1.14), "Exp", lines: +2 -2
2649
2674
 
2650
2675
  *
2651
-
2676
+
2652
2677
  2001-10-30 12:51 Michael Neumann <mneumann@ntecs.de>
2653
2678
 
2654
2679
  Changed:
2655
2680
  doc/index.rd (1.12), "Exp", lines: +2 -2
2656
2681
 
2657
2682
  fixed typo
2658
-
2683
+
2659
2684
  2001-10-22 16:08 Michael Neumann <mneumann@ntecs.de>
2660
2685
 
2661
2686
  Changed:
2662
2687
  doc/html/index.html (1.13), "Exp", lines: +21 -15
2663
2688
 
2664
2689
  *
2665
-
2690
+
2666
2691
  2001-10-22 16:07 Michael Neumann <mneumann@ntecs.de>
2667
2692
 
2668
2693
  Changed:
2669
2694
  doc/index.rd (1.11), "Exp", lines: +6 -2
2670
2695
 
2671
2696
  new release
2672
-
2697
+
2673
2698
  2001-10-22 16:05 Michael Neumann <mneumann@ntecs.de>
2674
2699
 
2675
2700
  Changed:
2676
2701
  lib/dbi/dbi.rb (1.22), "Exp", lines: +17 -3
2677
2702
 
2678
2703
  preced driver specific functions with __
2679
-
2704
+
2680
2705
  2001-10-22 15:59 Michael Neumann <mneumann@ntecs.de>
2681
2706
 
2682
2707
  Changed:
2683
2708
  lib/dbd_odbc/ODBC.rb (1.4), "Exp", lines: +9 -3
2684
2709
 
2685
2710
  added odbc_ignorecase option (submitted by Sean O'Halpin)
2686
-
2711
+
2687
2712
  2001-10-10 13:33 Michael Neumann <mneumann@ntecs.de>
2688
2713
 
2689
2714
  Changed:
@@ -2691,7 +2716,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2691
2716
 
2692
2717
  added method StatementHandle#fetch_scroll
2693
2718
  added createdb, dropdb, reload, shutdown
2694
-
2719
+
2695
2720
  2001-10-10 10:47 Michael Neumann <mneumann@ntecs.de>
2696
2721
 
2697
2722
  Changed:
@@ -2700,14 +2725,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2700
2725
  method DBI.get_driver renamed to DBI._get_full_driver
2701
2726
  new method DBI.get_driver now returns only DriverHandle object
2702
2727
  added attribute reader for DBI::Handle
2703
-
2728
+
2704
2729
  2001-10-10 10:39 Michael Neumann <mneumann@ntecs.de>
2705
2730
 
2706
2731
  Changed:
2707
2732
  examples/proxyserver.rb (1.5), "Exp", lines: +2 -2
2708
2733
 
2709
2734
  DBI.get_driver => DBI._get_full_driver
2710
-
2735
+
2711
2736
  2001-09-07 13:39 tag dbi-0-0-9
2712
2737
 
2713
2738
  2001-09-07 13:39 Michael Neumann <mneumann@ntecs.de>
@@ -2717,14 +2742,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2717
2742
  doc/html/index.html (1.12), "Exp", lines: +19 -13
2718
2743
 
2719
2744
  *
2720
-
2745
+
2721
2746
  2001-09-05 21:56 Michael Neumann <mneumann@ntecs.de>
2722
2747
 
2723
2748
  Changed:
2724
2749
  lib/dbi/sql.rb (1.7), "Exp", lines: +2 -2
2725
2750
 
2726
2751
  fixed bug in "quote" (found by Steven Davies)
2727
-
2752
+
2728
2753
  2001-08-30 14:34 Michael Neumann <mneumann@ntecs.de>
2729
2754
 
2730
2755
  Changed:
@@ -2732,56 +2757,56 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2732
2757
  lib/dbd_mysql/Mysql.rb (1.7), "Exp", lines: +5 -5
2733
2758
 
2734
2759
  columns: size=>precision; decimal_digits=>scale
2735
-
2760
+
2736
2761
  2001-08-30 14:30 Michael Neumann <mneumann@ntecs.de>
2737
2762
 
2738
2763
  Changed:
2739
2764
  lib/dbi/dbi.rb (1.20), "Exp", lines: +4 -17
2740
2765
 
2741
2766
  changed SQL_type constants
2742
-
2767
+
2743
2768
  2001-08-30 14:10 Michael Neumann <mneumann@ntecs.de>
2744
2769
 
2745
2770
  Changed:
2746
2771
  lib/dbd_db2/DB2.rb (1.4), "Exp", lines: +59 -10
2747
2772
 
2748
2773
  column_info returns more info's
2749
-
2774
+
2750
2775
  2001-08-30 14:06 Michael Neumann <mneumann@ntecs.de>
2751
2776
 
2752
2777
  Changed:
2753
2778
  examples/proxyserver.rb (1.4), "Exp", lines: +2 -2
2754
2779
 
2755
2780
  changed DBD version checking
2756
-
2781
+
2757
2782
  2001-08-30 14:06 Michael Neumann <mneumann@ntecs.de>
2758
2783
 
2759
2784
  Changed:
2760
2785
  lib/dbd_proxy/Proxy.rb (1.6), "Exp", lines: +8 -2
2761
2786
 
2762
2787
  changed version checking
2763
-
2788
+
2764
2789
  2001-08-30 14:05 Michael Neumann <mneumann@ntecs.de>
2765
2790
 
2766
2791
  Changed:
2767
2792
  lib/dbd_odbc/ODBC.rb (1.3), "Exp", lines: +6 -4
2768
2793
 
2769
2794
  removed patch required for Ruby/ODBC 0.4
2770
-
2795
+
2771
2796
  2001-08-30 14:02 Michael Neumann <mneumann@ntecs.de>
2772
2797
 
2773
2798
  Changed:
2774
2799
  doc/html/index.html (1.11), "Exp", lines: +77 -23
2775
2800
 
2776
2801
  *
2777
-
2802
+
2778
2803
  2001-08-30 14:01 Michael Neumann <mneumann@ntecs.de>
2779
2804
 
2780
2805
  Changed:
2781
2806
  doc/index.rd (1.9), "Exp", lines: +44 -8
2782
2807
 
2783
2808
  added more contributors; new example; updated dbd_odbc (required newer version)
2784
-
2809
+
2785
2810
  2001-08-30 13:34 Michael Neumann <mneumann@ntecs.de>
2786
2811
 
2787
2812
  Changed:
@@ -2789,63 +2814,63 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2789
2814
 
2790
2815
  moved DBI::ColumnInfo to own file columninfo.rb
2791
2816
  removed DBD::COMPATIBLE_API_VERSIONS (now use major/minor)
2792
-
2817
+
2793
2818
  2001-08-30 13:31 Michael Neumann <mneumann@ntecs.de>
2794
2819
 
2795
2820
  Changed:
2796
2821
  lib/dbi/row.rb (1.7), "Exp", lines: +4 -0
2797
2822
 
2798
2823
  *
2799
-
2824
+
2800
2825
  2001-08-30 13:31 Michael Neumann <mneumann@ntecs.de>
2801
2826
 
2802
2827
  Added:
2803
2828
  lib/dbi/columninfo.rb (1.1)
2804
2829
 
2805
2830
  initial import (moved from dbi.rb)
2806
-
2831
+
2807
2832
  2001-08-23 22:11 Michael Neumann <mneumann@ntecs.de>
2808
2833
 
2809
2834
  Changed:
2810
2835
  lib/dbi/dbi.rb (1.18), "Exp", lines: +3 -2
2811
2836
 
2812
2837
  added DBI::DBD::COMPATIBLE_API_VERSIONS
2813
-
2838
+
2814
2839
  2001-08-23 22:09 Michael Neumann <mneumann@ntecs.de>
2815
2840
 
2816
2841
  Changed:
2817
2842
  lib/dbd_proxy/Proxy.rb (1.5), "Exp", lines: +2 -2
2818
2843
 
2819
2844
  fixed DBD problems
2820
-
2845
+
2821
2846
  2001-08-23 22:09 Michael Neumann <mneumann@ntecs.de>
2822
2847
 
2823
2848
  Changed:
2824
2849
  examples/proxyserver.rb (1.3), "Exp", lines: +2 -2
2825
2850
 
2826
2851
  fixed DBD version problems
2827
-
2852
+
2828
2853
  2001-08-23 22:05 Michael Neumann <mneumann@ntecs.de>
2829
2854
 
2830
2855
  Changed:
2831
2856
  lib/dbd_proxy/Proxy.rb (1.4), "Exp", lines: +3 -3
2832
2857
 
2833
2858
  fixed problems with different DBD version on the server side
2834
-
2859
+
2835
2860
  2001-08-23 22:04 Michael Neumann <mneumann@ntecs.de>
2836
2861
 
2837
2862
  Changed:
2838
2863
  lib/dbd_mysql/Mysql.rb (1.6), "Exp", lines: +105 -4
2839
2864
 
2840
2865
  added Database#columns; by Eli Green
2841
-
2866
+
2842
2867
  2001-08-23 21:47 Michael Neumann <mneumann@ntecs.de>
2843
2868
 
2844
2869
  Changed:
2845
2870
  lib/dbd_pg/Pg.rb (1.9), "Exp", lines: +107 -2
2846
2871
 
2847
2872
  added Database#columns from Eli Green
2848
-
2873
+
2849
2874
  2001-08-23 20:59 Michael Neumann <mneumann@ntecs.de>
2850
2875
 
2851
2876
  Changed:
@@ -2854,14 +2879,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2854
2879
  StatementHandle#column_info returns now array of DBI::ColumnInfo
2855
2880
  added class DBI::ColumnInfo
2856
2881
  added method DatabaseHandle#columns(table) and BaseDatabase#columns(table)
2857
-
2882
+
2858
2883
  2001-08-21 21:01 Michael Neumann <mneumann@ntecs.de>
2859
2884
 
2860
2885
  Changed:
2861
2886
  lib/dbi/utils.rb (1.8), "Exp", lines: +3 -3
2862
2887
 
2863
2888
  fixed bug in XMLFormatter.table (found by Jim Menard)
2864
-
2889
+
2865
2890
  2001-07-28 12:07 tag dbi-0-0-8
2866
2891
 
2867
2892
  2001-07-28 12:07 Michael Neumann <mneumann@ntecs.de>
@@ -2872,14 +2897,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2872
2897
  doc/html/index.html (1.10), "Exp", lines: +90 -183
2873
2898
 
2874
2899
  *
2875
-
2900
+
2876
2901
  2001-07-28 11:58 Michael Neumann <mneumann@ntecs.de>
2877
2902
 
2878
2903
  Changed:
2879
2904
  doc/index.rd (1.8), "Exp", lines: +8 -1
2880
2905
 
2881
2906
  new version
2882
-
2907
+
2883
2908
  2001-07-26 00:56 jweirich
2884
2909
 
2885
2910
  Changed:
@@ -2887,21 +2912,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2887
2912
  lib/dbi/test/testrow.rb (1.3), "Exp", lines: +28 -16
2888
2913
 
2889
2914
  Fixed row.rb so that dup and clone work
2890
-
2915
+
2891
2916
  2001-07-19 09:37 Michael Neumann <mneumann@ntecs.de>
2892
2917
 
2893
2918
  Changed:
2894
2919
  lib/dbi/dbi.rb (1.16), "Exp", lines: +2 -3
2895
2920
 
2896
2921
  fixed bug in load_driver (thanks to John Gorman)
2897
-
2922
+
2898
2923
  2001-07-17 16:57 Michael Neumann <mneumann@ntecs.de>
2899
2924
 
2900
2925
  Changed:
2901
2926
  lib/dbi/sql.rb (1.6), "Exp", lines: +3 -2
2902
2927
 
2903
2928
  corrected quoting for Time, Date and DateTime
2904
-
2929
+
2905
2930
  2001-07-11 21:54 Michael Neumann <mneumann@ntecs.de>
2906
2931
 
2907
2932
  Changed:
@@ -2909,7 +2934,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2909
2934
  doc/html/index.html (1.8), "Exp", lines: +10 -3
2910
2935
 
2911
2936
  *
2912
-
2937
+
2913
2938
  2001-07-10 15:07 tag dbi-0-0-7
2914
2939
 
2915
2940
  2001-07-10 15:07 Michael Neumann <mneumann@ntecs.de>
@@ -2918,7 +2943,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2918
2943
  lib/dbi/dbi.rb (1.15), "Exp", lines: +3 -1
2919
2944
 
2920
2945
  fixed bug; missing else-branch and return
2921
-
2946
+
2922
2947
  2001-07-06 19:36 tag dbi-0-0-6
2923
2948
 
2924
2949
  2001-07-06 19:36 Michael Neumann <mneumann@ntecs.de>
@@ -2927,49 +2952,49 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2927
2952
  doc/html/index.html (1.7), "Exp", lines: +10 -3
2928
2953
 
2929
2954
  *
2930
-
2955
+
2931
2956
  2001-07-06 19:35 Michael Neumann <mneumann@ntecs.de>
2932
2957
 
2933
2958
  Changed:
2934
2959
  lib/dbi/dbi.rb (1.14), "Exp", lines: +2 -1
2935
2960
 
2936
2961
  fixed bug in load_driver (added return found)
2937
-
2962
+
2938
2963
  2001-07-06 18:21 Michael Neumann <mneumann@ntecs.de>
2939
2964
 
2940
2965
  Changed:
2941
2966
  doc/index.rd (1.6), "Exp", lines: +6 -2
2942
2967
 
2943
2968
  new release
2944
-
2969
+
2945
2970
  2001-07-06 18:16 Michael Neumann <mneumann@ntecs.de>
2946
2971
 
2947
2972
  Changed:
2948
2973
  lib/dbd_pg/Pg.rb (1.8), "Exp", lines: +3 -2
2949
2974
 
2950
2975
  added DBI URI parameter database additionally to dbname
2951
-
2976
+
2952
2977
  2001-07-06 18:14 Michael Neumann <mneumann@ntecs.de>
2953
2978
 
2954
2979
  Changed:
2955
2980
  lib/dbd_proxy/Proxy.rb (1.3), "Exp", lines: +8 -4
2956
2981
 
2957
2982
  rewritten DBI URI parser (due to dsn=...;...;)
2958
-
2983
+
2959
2984
  2001-07-06 18:14 Michael Neumann <mneumann@ntecs.de>
2960
2985
 
2961
2986
  Changed:
2962
2987
  lib/dbi/utils.rb (1.7), "Exp", lines: +11 -3
2963
2988
 
2964
2989
  added patch by John Gorman for Utils.parse_params to allow database:host instead of database=...;host=...
2965
-
2990
+
2966
2991
  2001-07-06 18:13 Michael Neumann <mneumann@ntecs.de>
2967
2992
 
2968
2993
  Changed:
2969
2994
  lib/dbi/dbi.rb (1.13), "Exp", lines: +35 -6
2970
2995
 
2971
2996
  added case-insensitive DBD name patch by John Gorman (e.g. dbi:Mysql:... and dbi:mysql:... should both work)
2972
-
2997
+
2973
2998
  2001-06-29 17:18 Michael Neumann <mneumann@ntecs.de>
2974
2999
 
2975
3000
  Changed:
@@ -2978,14 +3003,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2978
3003
  lib/dbi/utils.rb (1.6), "Exp", lines: +4 -4
2979
3004
 
2980
3005
  removed some warnings
2981
-
3006
+
2982
3007
  2001-06-29 03:27 jweirich
2983
3008
 
2984
3009
  Changed:
2985
3010
  test/testdbi.rb (1.2), "Exp", lines: +17 -17
2986
3011
 
2987
3012
  Removed spaces before arg lists (warnings using -w)
2988
-
3013
+
2989
3014
  2001-06-22 12:28 jweirich
2990
3015
 
2991
3016
  Deleted:
@@ -2999,42 +3024,42 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
2999
3024
  test/example/teardown.sh (1.1)
3000
3025
 
3001
3026
  Moved testdbi.rb to toplevel test dir. Added configurability
3002
-
3027
+
3003
3028
  2001-06-18 13:59 Michael Neumann <mneumann@ntecs.de>
3004
3029
 
3005
3030
  Changed:
3006
3031
  examples/sqlsh.rb (1.8), "Exp", lines: +76 -6
3007
3032
 
3008
3033
  added input/output support
3009
-
3034
+
3010
3035
  2001-06-18 13:49 Michael Neumann <mneumann@ntecs.de>
3011
3036
 
3012
3037
  Changed:
3013
3038
  lib/dbi/utils.rb (1.5), "Exp", lines: +17 -1
3014
3039
 
3015
3040
  added conv_param to convert Date/Time arguments to DBI::Date/Time
3016
-
3041
+
3017
3042
  2001-06-18 13:48 Michael Neumann <mneumann@ntecs.de>
3018
3043
 
3019
3044
  Changed:
3020
3045
  lib/dbi/sql.rb (1.4), "Exp", lines: +65 -1
3021
3046
 
3022
3047
  added Masatoshi SEKI's Coerce class
3023
-
3048
+
3024
3049
  2001-06-18 13:47 Michael Neumann <mneumann@ntecs.de>
3025
3050
 
3026
3051
  Changed:
3027
3052
  lib/dbi/dbi.rb (1.11), "Exp", lines: +44 -9
3028
3053
 
3029
3054
  improved DBI:: Date/Time/Timestamp classes, added automatic coercion from Date/automatic Time to DBI::Date/Time in parmeters
3030
-
3055
+
3031
3056
  2001-06-18 13:45 Michael Neumann <mneumann@ntecs.de>
3032
3057
 
3033
3058
  Changed:
3034
3059
  lib/dbd_pg/Pg.rb (1.7), "Exp", lines: +13 -19
3035
3060
 
3036
3061
  added coercing from Masatoshi SEKI
3037
-
3062
+
3038
3063
  2001-06-18 12:02 Michael Neumann <mneumann@ntecs.de>
3039
3064
 
3040
3065
  Changed:
@@ -3042,7 +3067,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3042
3067
 
3043
3068
 
3044
3069
  connection changed to "dbi:Pg:dbname=..;host=...;port=...;tty=;options="
3045
-
3070
+
3046
3071
  2001-06-17 20:04 jweirich
3047
3072
 
3048
3073
  Changed:
@@ -3052,49 +3077,49 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3052
3077
  lib/dbi/test/testsqlquote.rb (1.3), "Exp", lines: +1 -1
3053
3078
 
3054
3079
  Updated the sql binding methods to correctly ignore ? in a string. Tests also updated.
3055
-
3080
+
3056
3081
  2001-06-11 12:59 Michael Neumann <mneumann@ntecs.de>
3057
3082
 
3058
3083
  Changed:
3059
3084
  examples/sqlsh.rb (1.7), "Exp", lines: +2 -2
3060
3085
 
3061
3086
  output available DBDs (call sqlsh.rb without params) even if an error occured
3062
-
3087
+
3063
3088
  2001-06-11 12:58 Michael Neumann <mneumann@ntecs.de>
3064
3089
 
3065
3090
  Changed:
3066
3091
  lib/dbi/trace.rb (1.2), "Exp", lines: +2 -1
3067
3092
 
3068
3093
  added require "dbi" to work as "ruby -r dbi/trace myprog.rb"
3069
-
3094
+
3070
3095
  2001-06-11 10:46 Michael Neumann <mneumann@ntecs.de>
3071
3096
 
3072
3097
  Changed:
3073
3098
  doc/html/index.html (1.6), "Exp", lines: +22 -14
3074
3099
 
3075
3100
  *
3076
-
3101
+
3077
3102
  2001-06-11 10:45 Michael Neumann <mneumann@ntecs.de>
3078
3103
 
3079
3104
  Changed:
3080
3105
  doc/index.rd (1.5), "Exp", lines: +13 -5
3081
3106
 
3082
3107
  ChangeLog and ToDo section
3083
-
3108
+
3084
3109
  2001-06-11 10:44 Michael Neumann <mneumann@ntecs.de>
3085
3110
 
3086
3111
  Changed:
3087
3112
  lib/dbi/dbi.rb (1.10), "Exp", lines: +2 -21
3088
3113
 
3089
3114
  version => 0.0.6, moved ToDo's into file doc/ToDo
3090
-
3115
+
3091
3116
  2001-06-11 00:11 Michael Neumann <mneumann@ntecs.de>
3092
3117
 
3093
3118
  Changed:
3094
3119
  lib/dbi/sql.rb (1.2), "Exp", lines: +19 -11
3095
3120
 
3096
3121
  fixed bug found by Masatoshi SEKI in bind(self, "WHERE a=?", ["connected?"])
3097
-
3122
+
3098
3123
  2001-06-11 00:09 Michael Neumann <mneumann@ntecs.de>
3099
3124
 
3100
3125
  Changed:
@@ -3104,7 +3129,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3104
3129
 
3105
3130
  require files in the directory below instead of installed (e.g. ../sql instead of dbi/sql)
3106
3131
  extended testsqlbind.rb (to check for a bug occured in 0.0.5)
3107
-
3132
+
3108
3133
  2001-06-08 20:30 tag dbi-0-0-5
3109
3134
 
3110
3135
  2001-06-08 20:30 Michael Neumann <mneumann@ntecs.de>
@@ -3114,14 +3139,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3114
3139
  doc/html/index.html (1.5), "Exp", lines: +1 -1
3115
3140
 
3116
3141
  changed downloads
3117
-
3142
+
3118
3143
  2001-06-08 20:28 Michael Neumann <mneumann@ntecs.de>
3119
3144
 
3120
3145
  Changed:
3121
3146
  lib/dbd_odbc/ODBC.rb (1.2), "Exp", lines: +2 -2
3122
3147
 
3123
3148
  corrected data_sources ("dbi:ODBC:" + ...)
3124
-
3149
+
3125
3150
  2001-06-08 20:21 Michael Neumann <mneumann@ntecs.de>
3126
3151
 
3127
3152
  Added:
@@ -3130,14 +3155,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3130
3155
  lib/dbi/dbi.rb (1.9), "Exp", lines: +36 -3
3131
3156
 
3132
3157
  added tracing to DBI
3133
-
3158
+
3134
3159
  2001-06-07 20:13 Michael Neumann <mneumann@ntecs.de>
3135
3160
 
3136
3161
  Changed:
3137
3162
  examples/sqlsh.rb (1.6), "Exp", lines: +8 -4
3138
3163
 
3139
3164
  added resuce when showing the available DSN
3140
-
3165
+
3141
3166
  2001-06-07 19:12 Michael Neumann <mneumann@ntecs.de>
3142
3167
 
3143
3168
  Changed:
@@ -3145,21 +3170,21 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3145
3170
  lib/dbd_db2/DB2.rb (1.3), "Exp", lines: +40 -13
3146
3171
 
3147
3172
  added fetch_scroll as well as Date/Time convertion for DB2
3148
-
3173
+
3149
3174
  2001-06-07 19:10 Michael Neumann <mneumann@ntecs.de>
3150
3175
 
3151
3176
  Changed:
3152
3177
  doc/index.rd (1.3), "Exp", lines: +6 -1
3153
3178
 
3154
3179
  added ODBC
3155
-
3180
+
3156
3181
  2001-06-07 19:06 Michael Neumann <mneumann@ntecs.de>
3157
3182
 
3158
3183
  Changed:
3159
3184
  lib/dbi/dbi.rb (1.8), "Exp", lines: +29 -3
3160
3185
 
3161
3186
  added classes Date and Time
3162
-
3187
+
3163
3188
  2001-06-07 19:06 Michael Neumann <mneumann@ntecs.de>
3164
3189
 
3165
3190
  Added:
@@ -3168,7 +3193,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3168
3193
  lib/PATHCONV (1.9), "Exp", lines: +1 -0
3169
3194
 
3170
3195
  initial import
3171
-
3196
+
3172
3197
  2001-06-07 13:52 Michael Neumann <mneumann@ntecs.de>
3173
3198
 
3174
3199
  Added:
@@ -3180,14 +3205,14 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3180
3205
 
3181
3206
  added method do in Mysql
3182
3207
  initial import of Msql
3183
-
3208
+
3184
3209
  2001-06-07 13:52 Michael Neumann <mneumann@ntecs.de>
3185
3210
 
3186
3211
  Changed:
3187
3212
  doc/index.rd (1.2), "Exp", lines: +5 -1
3188
3213
 
3189
3214
  mSQL added
3190
-
3215
+
3191
3216
  2001-06-07 10:42 Michael Neumann <mneumann@ntecs.de>
3192
3217
 
3193
3218
  Changed:
@@ -3202,35 +3227,35 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3202
3227
 
3203
3228
  changed raising DBI::Error to DBI::DatabaseError
3204
3229
  changed method DBI::DatabaseError.new
3205
-
3230
+
3206
3231
  2001-06-06 15:32 Michael Neumann <mneumann@ntecs.de>
3207
3232
 
3208
3233
  Changed:
3209
3234
  lib/dbi/utils.rb (1.4), "Exp", lines: +5 -5
3210
3235
 
3211
3236
  extended XMLFormatter methods row and table
3212
-
3237
+
3213
3238
  2001-06-05 22:33 Michael Neumann <mneumann@ntecs.de>
3214
3239
 
3215
3240
  Changed:
3216
3241
  lib/dbd_pg/doc/README (1.2), "Exp", lines: +10 -8
3217
3242
 
3218
3243
  adapted towards new version 0.0.5
3219
-
3244
+
3220
3245
  2001-06-05 22:30 Michael Neumann <mneumann@ntecs.de>
3221
3246
 
3222
3247
  Changed:
3223
3248
  ext/dbd_sybase/doc/README (1.3), "Exp", lines: +4 -1
3224
3249
 
3225
3250
  outdated
3226
-
3251
+
3227
3252
  2001-06-05 22:28 Michael Neumann <mneumann@ntecs.de>
3228
3253
 
3229
3254
  Changed:
3230
3255
  doc/html/index.html (1.2), "Exp", lines: +196 -1
3231
3256
 
3232
3257
  added content
3233
-
3258
+
3234
3259
  2001-06-05 22:25 Michael Neumann <mneumann@ntecs.de>
3235
3260
 
3236
3261
  Added:
@@ -3239,35 +3264,35 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3239
3264
  doc/html/rubyStyle.css (1.1)
3240
3265
 
3241
3266
  new README file
3242
-
3267
+
3243
3268
  2001-06-05 22:23 Michael Neumann <mneumann@ntecs.de>
3244
3269
 
3245
3270
  Changed:
3246
3271
  README (1.2), "Exp", lines: +1 -92
3247
3272
 
3248
3273
  removed content, forward to doc/index.rd
3249
-
3274
+
3250
3275
  2001-06-05 12:17 Michael Neumann <mneumann@ntecs.de>
3251
3276
 
3252
3277
  Changed:
3253
3278
  examples/proxyserver.rb (1.2), "Exp", lines: +14 -5
3254
3279
 
3255
3280
  improved some code
3256
-
3281
+
3257
3282
  2001-06-05 12:14 Michael Neumann <mneumann@ntecs.de>
3258
3283
 
3259
3284
  Changed:
3260
3285
  lib/dbd_interbase/InterBase.rb (1.2), "Exp", lines: +20 -4
3261
3286
 
3262
3287
  added error handling => DBI::Error
3263
-
3288
+
3264
3289
  2001-06-05 12:07 Michael Neumann <mneumann@ntecs.de>
3265
3290
 
3266
3291
  Changed:
3267
3292
  lib/dbd_pg/Pg.rb (1.4), "Exp", lines: +4 -4
3268
3293
 
3269
3294
  changed $! (.dup) to $!.type.to_s (to fix the DRbUnknown DBD::Proxy bug)
3270
-
3295
+
3271
3296
  2001-06-05 12:06 Michael Neumann <mneumann@ntecs.de>
3272
3297
 
3273
3298
  Changed:
@@ -3276,28 +3301,28 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3276
3301
  added error handling -> DBI::Error
3277
3302
  added ?-parameter markers binding
3278
3303
  removed ::Mysql.quote because it didn't worked as expected
3279
-
3304
+
3280
3305
  2001-06-05 10:28 Michael Neumann <mneumann@ntecs.de>
3281
3306
 
3282
3307
  Changed:
3283
3308
  lib/dbd_ado/ADO.rb (1.4), "Exp", lines: +10 -3
3284
3309
 
3285
3310
  fixed misbehaviour in #finish. now supports parameter markers
3286
-
3311
+
3287
3312
  2001-06-05 09:44 Michael Neumann <mneumann@ntecs.de>
3288
3313
 
3289
3314
  Changed:
3290
3315
  lib/dbi/utils.rb (1.3), "Exp", lines: +2 -2
3291
3316
 
3292
3317
  fixed bug (one parenthese too much)
3293
-
3318
+
3294
3319
  2001-06-04 14:24 Michael Neumann <mneumann@ntecs.de>
3295
3320
 
3296
3321
  Changed:
3297
3322
  lib/PATHCONV (1.7), "Exp", lines: +1 -0
3298
3323
 
3299
3324
  added Proxy
3300
-
3325
+
3301
3326
  2001-06-04 14:23 Michael Neumann <mneumann@ntecs.de>
3302
3327
 
3303
3328
  Added:
@@ -3305,7 +3330,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3305
3330
  examples/proxyserver.rb (1.1)
3306
3331
 
3307
3332
  initial import
3308
-
3333
+
3309
3334
  2001-06-04 14:22 Michael Neumann <mneumann@ntecs.de>
3310
3335
 
3311
3336
  Changed:
@@ -3314,56 +3339,56 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3314
3339
  added DBI.get_driver (to access the underlying DBD-Driver), needed by ProxyServer
3315
3340
  @@driver_map contains now arrays of DBI::DriverHandle and DBD::Driver -> modified all methods which use it
3316
3341
  added checks in DatabaseHandle select_one, select_all, [], []= if it is already closed -> raise exemption
3317
-
3342
+
3318
3343
  2001-06-04 14:15 Michael Neumann <mneumann@ntecs.de>
3319
3344
 
3320
3345
  Changed:
3321
3346
  lib/dbi/row.rb (1.5), "Exp", lines: +10 -1
3322
3347
 
3323
3348
  added methods to_h, field_names (alias to column_names) and fixed typo-bug
3324
-
3349
+
3325
3350
  2001-06-04 14:13 Michael Neumann <mneumann@ntecs.de>
3326
3351
 
3327
3352
  Changed:
3328
3353
  lib/dbd_pg/Pg.rb (1.3), "Exp", lines: +10 -0
3329
3354
 
3330
3355
  added method DatabaseHandle#tables and modified load_type_map to return CHAR's
3331
-
3356
+
3332
3357
  2001-06-02 19:20 Rainer Perl
3333
3358
 
3334
3359
  Changed:
3335
3360
  ext/dbd_sybase/extconf.rb (1.2), "Exp", lines: +1 -6
3336
3361
 
3337
3362
  applied patch from Akinori MUSHA
3338
-
3363
+
3339
3364
  2001-06-02 18:06 Rainer Perl
3340
3365
 
3341
3366
  Added:
3342
3367
  doc/html/index.html (1.1)
3343
3368
 
3344
3369
  added example web-index
3345
-
3370
+
3346
3371
  2001-06-01 11:04 Michael Neumann <mneumann@ntecs.de>
3347
3372
 
3348
3373
  Changed:
3349
3374
  lib/dbd_oracle/Oracle.rb (1.2), "Exp", lines: +117 -43
3350
3375
 
3351
3376
  improved speed, fixed some bugs
3352
-
3377
+
3353
3378
  2001-05-31 14:34 Michael Neumann <mneumann@ntecs.de>
3354
3379
 
3355
3380
  Changed:
3356
3381
  examples/sqlsh.rb (1.5), "Exp", lines: +1 -2
3357
3382
 
3358
3383
  fixed bug (rescue instead ensure), which had the consequence readline was never used
3359
-
3384
+
3360
3385
  2001-05-31 14:18 Michael Neumann <mneumann@ntecs.de>
3361
3386
 
3362
3387
  Changed:
3363
3388
  lib/dbd_mysql/Mysql.rb (1.2), "Exp", lines: +1 -1
3364
3389
 
3365
3390
  changed in datasource, mysql to Mysql
3366
-
3391
+
3367
3392
  2001-05-31 14:17 Michael Neumann <mneumann@ntecs.de>
3368
3393
 
3369
3394
  Changed:
@@ -3371,42 +3396,42 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3371
3396
 
3372
3397
 
3373
3398
  added "include Enumerable"
3374
-
3399
+
3375
3400
  2001-05-31 14:16 Michael Neumann <mneumann@ntecs.de>
3376
3401
 
3377
3402
  Changed:
3378
3403
  lib/PATHCONV (1.6), "Exp", lines: +1 -1
3379
3404
 
3380
3405
  install wrapper together with dbi
3381
-
3406
+
3382
3407
  2001-05-31 13:54 Michael Neumann <mneumann@ntecs.de>
3383
3408
 
3384
3409
  Changed:
3385
3410
  lib/dbi/row.rb (1.3), "Exp", lines: +4 -2
3386
3411
 
3387
3412
  fixed bug, so size_or_arr can now be nil, which creates an Array of size col_names.size
3388
-
3413
+
3389
3414
  2001-05-31 13:53 Michael Neumann <mneumann@ntecs.de>
3390
3415
 
3391
3416
  Added:
3392
3417
  lib/wrapper/dbi.rb (1.1)
3393
3418
 
3394
3419
  initial creation
3395
-
3420
+
3396
3421
  2001-05-31 13:53 Michael Neumann <mneumann@ntecs.de>
3397
3422
 
3398
3423
  Changed:
3399
3424
  lib/PATHCONV (1.5), "Exp", lines: +1 -0
3400
3425
 
3401
3426
  add directory wrapper which installs directly into site-ruby
3402
-
3427
+
3403
3428
  2001-05-31 13:52 Michael Neumann <mneumann@ntecs.de>
3404
3429
 
3405
3430
  Changed:
3406
3431
  examples/sqlsh.rb (1.4), "Exp", lines: +1 -1
3407
3432
 
3408
3433
  removed double :: in DSN output
3409
-
3434
+
3410
3435
  2001-05-31 13:28 Michael Neumann <mneumann@ntecs.de>
3411
3436
 
3412
3437
  Added:
@@ -3416,7 +3441,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3416
3441
  lib/dbi/test/testsqlquote.rb (1.1)
3417
3442
 
3418
3443
  initial import of test-cases, from Jim Weirichs Postgesql DBD
3419
-
3444
+
3420
3445
  2001-05-31 13:27 Michael Neumann <mneumann@ntecs.de>
3421
3446
 
3422
3447
  Changed:
@@ -3424,7 +3449,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3424
3449
 
3425
3450
 
3426
3451
  move some methods from dbi/dbi into this file
3427
-
3452
+
3428
3453
  2001-05-31 13:26 Michael Neumann <mneumann@ntecs.de>
3429
3454
 
3430
3455
  Added:
@@ -3432,7 +3457,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3432
3457
 
3433
3458
  initial creation.
3434
3459
  extracted from Jim Weirichs basicquote.rb, basicbind.rb and Postgresql.rb (query?)
3435
-
3460
+
3436
3461
  2001-05-31 13:25 Michael Neumann <mneumann@ntecs.de>
3437
3462
 
3438
3463
  Changed:
@@ -3441,7 +3466,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3441
3466
  use delegator to Array
3442
3467
  many features added, e.g dbrow["firstname", "lastname", ...] => ['Michael', 'Neumann', ...]
3443
3468
  passed Jims testcase
3444
-
3469
+
3445
3470
  2001-05-31 13:23 Michael Neumann <mneumann@ntecs.de>
3446
3471
 
3447
3472
  Changed:
@@ -3449,7 +3474,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3449
3474
 
3450
3475
  moved module Utils into file dbi/utils.rb
3451
3476
  use Jim Weirichs SQL::BasicQuote
3452
-
3477
+
3453
3478
  2001-05-31 13:19 Michael Neumann <mneumann@ntecs.de>
3454
3479
 
3455
3480
  Changed:
@@ -3457,7 +3482,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3457
3482
 
3458
3483
 
3459
3484
  use SQL.query? instead of own version
3460
-
3485
+
3461
3486
  2001-05-31 13:18 Michael Neumann <mneumann@ntecs.de>
3462
3487
 
3463
3488
  Added:
@@ -3466,7 +3491,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3466
3491
 
3467
3492
  initial import from Jim Weirichs ruby-dbi-postgresql-28.05.2001.7.tgz
3468
3493
  changed Postgres to Pg
3469
-
3494
+
3470
3495
  2001-05-31 13:17 Michael Neumann <mneumann@ntecs.de>
3471
3496
 
3472
3497
  Added:
@@ -3474,7 +3499,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3474
3499
 
3475
3500
 
3476
3501
  initial import from Jim Weirichs ruby-dbi-postgresql-28.05.2001.7.tgz
3477
-
3502
+
3478
3503
  2001-05-31 13:16 Michael Neumann <mneumann@ntecs.de>
3479
3504
 
3480
3505
  Changed:
@@ -3483,7 +3508,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3483
3508
 
3484
3509
  extracted some goodies to dbi/sql.rb
3485
3510
  changed Postgresql to Pg
3486
-
3511
+
3487
3512
  2001-05-31 13:14 Michael Neumann <mneumann@ntecs.de>
3488
3513
 
3489
3514
  Added:
@@ -3491,7 +3516,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3491
3516
 
3492
3517
 
3493
3518
  initial import from Jim Weirichs ruby-dbi-postgesql-28.05.2001.7.tgz
3494
-
3519
+
3495
3520
  2001-05-31 13:13 Michael Neumann <mneumann@ntecs.de>
3496
3521
 
3497
3522
  Changed:
@@ -3499,7 +3524,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3499
3524
 
3500
3525
 
3501
3526
  added dbd_pg
3502
-
3527
+
3503
3528
  2001-05-31 10:21 Michael Neumann <mneumann@ntecs.de>
3504
3529
 
3505
3530
  Changed:
@@ -3507,7 +3532,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3507
3532
 
3508
3533
 
3509
3534
  fixed several bugs in fetch/fetch_scroll, now has more functionality
3510
-
3535
+
3511
3536
  2001-05-31 10:20 Michael Neumann <mneumann@ntecs.de>
3512
3537
 
3513
3538
  Changed:
@@ -3517,7 +3542,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3517
3542
  fixed constant multiple-assignment bug, (1..6) -> (1..6).to_a
3518
3543
  fixed exception-raising bug, parameters in DBI::Error now all optional
3519
3544
  fixed bug in fetch_scroll (rows -> row)
3520
-
3545
+
3521
3546
  2001-05-31 10:18 Michael Neumann <mneumann@ntecs.de>
3522
3547
 
3523
3548
  Changed:
@@ -3526,7 +3551,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3526
3551
 
3527
3552
  added new commands (commit, rollback, autocommit)
3528
3553
  fixed readline-bug, readline -> $stdin.readline
3529
-
3554
+
3530
3555
  2001-05-30 18:59 Michael Neumann <mneumann@ntecs.de>
3531
3556
 
3532
3557
  Changed:
@@ -3536,7 +3561,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3536
3561
  added StatementHandle#finished?
3537
3562
  added check in DatabaseHandle#execute/#prepare in block-form, if finished? before calling #finish
3538
3563
  changed require "x" -> require "dbi/x"
3539
-
3564
+
3540
3565
  2001-05-30 18:43 Michael Neumann <mneumann@ntecs.de>
3541
3566
 
3542
3567
  Added:
@@ -3544,7 +3569,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3544
3569
 
3545
3570
 
3546
3571
  initial import
3547
-
3572
+
3548
3573
  2001-05-30 18:40 Michael Neumann <mneumann@ntecs.de>
3549
3574
 
3550
3575
  Changed:
@@ -3552,7 +3577,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3552
3577
 
3553
3578
 
3554
3579
  added ADO entry
3555
-
3580
+
3556
3581
  2001-05-30 18:37 Michael Neumann <mneumann@ntecs.de>
3557
3582
 
3558
3583
  Changed:
@@ -3560,7 +3585,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3560
3585
 
3561
3586
 
3562
3587
  don't rely on "readline", works now without
3563
-
3588
+
3564
3589
  2001-05-30 12:51 Michael Neumann <mneumann@ntecs.de>
3565
3590
 
3566
3591
  Added:
@@ -3574,7 +3599,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3574
3599
 
3575
3600
 
3576
3601
  initial import
3577
-
3602
+
3578
3603
  2001-05-30 12:43 Michael Neumann <mneumann@ntecs.de>
3579
3604
 
3580
3605
  Changed:
@@ -3583,7 +3608,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3583
3608
 
3584
3609
 
3585
3610
  new entry
3586
-
3611
+
3587
3612
  2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
3588
3613
 
3589
3614
  Added:
@@ -3591,7 +3616,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3591
3616
 
3592
3617
 
3593
3618
  initial import
3594
-
3619
+
3595
3620
  2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
3596
3621
 
3597
3622
  Added:
@@ -3601,7 +3626,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3601
3626
  added new DBDs
3602
3627
  initial import
3603
3628
  initial import
3604
-
3629
+
3605
3630
  2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
3606
3631
 
3607
3632
  Added:
@@ -3610,7 +3635,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3610
3635
 
3611
3636
  added new DBDs
3612
3637
  initial import
3613
-
3638
+
3614
3639
  2001-05-30 12:40 Michael Neumann <mneumann@ntecs.de>
3615
3640
 
3616
3641
  Changed:
@@ -3618,7 +3643,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3618
3643
 
3619
3644
 
3620
3645
  added new DBDs
3621
-
3646
+
3622
3647
  2001-05-30 12:36 Michael Neumann <mneumann@ntecs.de>
3623
3648
 
3624
3649
  Deleted:
@@ -3628,7 +3653,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3628
3653
 
3629
3654
 
3630
3655
  upgraded to new version 0.5
3631
-
3656
+
3632
3657
  2001-05-29 11:22 Michael Neumann <mneumann@ntecs.de>
3633
3658
 
3634
3659
  Changed:
@@ -3636,7 +3661,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3636
3661
 
3637
3662
 
3638
3663
  almost complete rewrite of DBI by Michael Neumann
3639
-
3664
+
3640
3665
  2001-05-29 11:16 Michael Neumann <mneumann@ntecs.de>
3641
3666
 
3642
3667
  Added:
@@ -3645,7 +3670,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3645
3670
 
3646
3671
 
3647
3672
  initial import
3648
-
3673
+
3649
3674
  2001-05-08 14:05 tag dbd_sybase-0-0-3
3650
3675
 
3651
3676
  2001-05-08 14:05 Rainer Perl
@@ -3656,7 +3681,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3656
3681
  ext/dbd_sybase/doc/README (1.2), "Exp", lines: +4 -21
3657
3682
 
3658
3683
  Updated dbd_sybase (now 0.0.3)
3659
-
3684
+
3660
3685
  2001-05-06 17:59 tag dbd_mysql-0-0-4
3661
3686
 
3662
3687
  2001-05-06 17:59 tag dbd_sybase-0-0-2
@@ -3684,7 +3709,7 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3684
3709
  lib/dbi/dbi.rb (1.1.1.1), "Exp", lines: +0 -0
3685
3710
 
3686
3711
  Imported sources
3687
-
3712
+
3688
3713
  2001-05-06 17:59 Rainer Perl
3689
3714
 
3690
3715
  Added:
@@ -3704,4 +3729,4 @@ Date:: Sat Feb 23 23:35:19 2008 -0800
3704
3729
  lib/dbi/dbi.rb (1.1)
3705
3730
 
3706
3731
  Initial revision
3707
-
3732
+