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