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