-
Notifications
You must be signed in to change notification settings - Fork 44
/
ChangeLog
3694 lines (2353 loc) · 98.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
== 0.4.0 - 08/23/2008
=== Summary
* Type conversion is now universally managed amongst DBDs. Please see
DBI::Type and DBI::TypeUtil and the DBI::StatementHandle#bind_coltype method.
* Rubygems support! All DBDs and DBI will now install and appropriately fetch
prerequisites (when possible) via the 'gem' command and other Rubygems
interfaces.
* Lots of code has been cleaned up and the filesystem has been significantly
reorganized.
* Many bugfixes due to inconsistencies between DBDs.
* DBDs that were deprecated in 0.2.0 have been removed, as have the Proxy and
Trace libraries (they didn't work anyways.) Proxy and Trace will be revisited
in the future.
* Several calls and classes have been deprecated in favor of native
ruby replacements.
* Tons of new documentation for both DBI users and DBD developers alike.
commit:: c717f76f0f9e3645d8a0e3a4d4daa6e0f2380273
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 23 01:48:08 2008 -0700
* Fixed test1.rb to include StatementHandle#finish.
commit:: 0f1ef6e5e8babb9741b8300ed63d826eeeb6b98f
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 23 00:59:46 2008 -0700
* Made the examples a little more in-your-face in the README.
commit:: 10c81ba90ff766b0c28288ba065472d7ab2497d2
Author:: Erik Hollensbe <[email protected]>
Date:: Tue Aug 19 13:29:13 2008 -0700
* Changes to DBD version handling: DBI::VERSION is now used for comparison, and the comparison actually works.
commit:: 10272829eb255580a40967458f0490649ea0584a
Author:: Erik Hollensbe <[email protected]>
Date:: Tue Aug 19 12:52:37 2008 -0700
* Made native binding toggleable
commit:: 0fba5e6125a48b4c38fe95818e96092ff2d46e0c
Author:: Erik Hollensbe <[email protected]>
Date:: Tue Aug 19 11:40:46 2008 -0700
* Fix for new pg driver
commit:: c4692c89ab6c392a9da0a82f4e43abf01a009bbc
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Aug 18 04:13:28 2008 -0700
* test to prove #20489 wrong
commit:: af530d0103a80c16f305ea0e5fb6db1263119b50
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 15 11:51:48 2008 -0700
* "standard" pl/sql replacement for plpgsql function used for testing the last bug. not all postgres installations have plpgsql and there were other issues.
commit:: 04c3371efb7fe37b5dbad88efd069e14287e9654
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 15 11:06:39 2008 -0700
* 0.4.0 fix for #21567, part 2.
commit:: 2782db825e809bb0ebd93ac39d4a9318c3c76058
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 15 08:38:34 2008 -0700
* DBD::Pg documentation.
commit:: 53d08b7b87b20b36bc0088498ec9aacc43e12def
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 15 07:32:09 2008 -0700
* DBD::ODBC documentation
commit:: 24c99b9296c9175082f67266327a6178442b0e69
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 15 07:14:35 2008 -0700
* A couple of touchups on the SQLite3 documentation
commit:: dfe4a9faa80cb21d57d1535e41697fefd2ff717b
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Aug 14 13:06:46 2008 -0700
* Fix for #21567, modified for 0.4.0
* As a result, removed unnecessary fill_array method in Tuples class.
commit:: 00fac0444f1e37404b1540e6ca7e8837e3627f63
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Aug 13 06:13:40 2008 -0700
* DBD::SQLite3
commit:: 7fd22432756e088090aa8411063cbdf18c968ebe
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Aug 13 05:30:23 2008 -0700
* DBD::SQLite docs
commit:: 1febe97a63a0da70869c46d6ec608e73ba66b310
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Aug 13 03:47:39 2008 -0700
* Mysql::Statement docs
* Fixed some formatting issues related to bullet lists and ::
commit:: 9c8df9cbeb61a9520671837ac66d8ad0c8422c9b
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Aug 13 02:34:19 2008 -0700
* Mysql::Driver
commit:: e1409c0fb791ddeca483c95aa32cf9e9f2a8c3c3
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Aug 13 02:26:51 2008 -0700
* First stab at MySQL Docs
* Base Namespace and Database documented
commit:: 2646f291c2fb48ffdbe6b3c684a92fd89e8ddd9c
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 14:28:50 2008 -0400
Added English comment to gem installation lines.
commit:: 7f4a757dc2bed50ebdaf6993062f4688a6d9b7d0
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 14:26:09 2008 -0400
English edits on Exceptions section of DBI_SPEC.
commit:: 11b8e19fb8a93fe2c9ad4691862d6e577a4cebcb
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 14:18:25 2008 -0400
Added "DBI::" namespace to titles for clarity.
commit:: c83b56ee84115247d64f96fb921d04d289c8785a
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 14:15:07 2008 -0400
English edits in Classes section of DBI_SPEC.
commit:: fdf38829a89a885a83d7d6a4625bff35e891d717
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 14:12:08 2008 -0400
Changed UPPERCASE titles to Title Case.
commit:: e9a22e7e0c38a0d2c5bca233b059b5e7a3e65a1c
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 14:11:48 2008 -0400
English edits on Design section of DBI_SPEC.
commit:: 4b3d7bf730182cb320f7f76520586a79af53a6e7
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 14:03:02 2008 -0400
English edits on DBI_SPEC foreword.
commit:: a1a6fba702e308562b8f13e9d6a8373332f43961
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 13:44:14 2008 -0400
Adjusted kitebird link title.
commit:: 49ed014939701f4bdce9c359a46160b93c3e18d9
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 13:44:05 2008 -0400
Added URI to github repo.
commit:: cd58249dec1d26771d97c612020bbdf0f53be4c7
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 13:41:25 2008 -0400
Changed most indentation in README from 3 to 4 spaces.
commit:: e9b3e43176b39207562216cfde6d233943d7f95b
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 13:41:04 2008 -0400
English edit in README.
commit:: 98511628a6316be2506cb3d61ec214b398032220
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 13:33:48 2008 -0400
Added test/sql.log to .gitignore.
commit:: 64d66c276e633496e1241f9fc5c0bd8a53c73496
Author:: Pistos <[email protected]>
Date:: Tue Aug 12 13:32:16 2008 -0400
Added .gitignore. Currently only ignoring rdocs.
commit:: 89ed83c8ff1a61b46aaaa4765948fdffa9155efa
Author:: Pistos <[email protected]>
Date:: Mon Aug 11 23:55:26 2008 -0400
Minor English change in README.
commit:: 8e64908cc68797a3022cea8a281645c7c7852e55
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 22:51:49 2008 -0700
* New DBD_SPEC. Not sure if I like it yet.
commit:: cdba7c7f461734e860b7f7ad140679418274022a
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 05:49:33 2008 -0700
* Some cleanup on LICENSE and README
commit:: c0825d7056fcb0c562d2481e5215eac05478419c
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 05:41:52 2008 -0700
* DBI::Utils namespace complete
commit:: 308533d39dd35a8f350d833b6f17fb84224cd49c
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 05:20:30 2008 -0700
* DBI::Type, DBI::Type::*, DBI::TypeUtil
commit:: 16cadf97edb581b1ba09bd73dcf03682e2e220e2
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 04:36:41 2008 -0700
* DBI::Row, DBI::SQL, DBI::SQL::PreparedStatement
* Some start in on DBI::Type
commit:: 0e67d266f30284418c8cf3bc6725a67991da7049
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 04:17:06 2008 -0700
* StatementHandle
commit:: 1b3fd5b85a419742216e6e1644e0add6cc7d6377
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 02:55:24 2008 -0700
* DBI::Binary, DBI::ColumnInfo, All Handle classes except StatementHandle.
commit:: bd90081b59da321d41ca5abb4704f74b24a67f3c
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Aug 9 02:00:30 2008 -0700
* DBI, BaseDatabase, BaseStatement, BaseDriver documented.
* Some rdoc task tweaks.
commit:: f69083b1e578c234614e79b954ed2cd8120c91bc
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 8 03:57:38 2008 -0700
* Revised DBI SPEC
commit:: fb4248efff21b4b929c179be2407750d88c29de7
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 8 03:11:42 2008 -0700
* README
commit:: de1fe2b859109fe7be7c414917b77cbb93a83555
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 8 03:00:25 2008 -0700
* Rendered trace module impotent; this is going to have to be addressed in 0.6.0
commit:: f76bd745213c56394d1529748d6c5c479b561c25
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Aug 8 02:08:35 2008 -0700
* bind_coltype implementation
* DBI 0.4.0 is feature-complete
commit:: 752532a90082986f21a3feec2c29951bdafa293c
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jul 31 02:30:16 2008 -0700
* You can now turn off type management by twiddling the convert_types bit on DBI, and the Driver, Database, and Statement handles.
* These changes will propogate upwards as new items are constructed
* This is tested in test_types
* Lots, lots, lots of fixes were made so this works properly
commit:: 047576e57fcc5c2043115c7fe8df7c2ed963020b
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jul 31 01:02:22 2008 -0700
* Fixed another regression I missed earlier
* DBI::Row did shallow copies of the delegated array, which was causing problems with Pg arrays. Using a marshal dump/load method now, hope it's not too slow.
commit:: 5a985a202efc3c0bc7dd7ef19ffe93a1ddd15b6d
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 30 23:55:04 2008 -0700
* Found a pretty ugly bug in DBI::Row, which caused a lot of regressions that should have happened when I started the type changes.
* Started to add some new tests
commit:: fb3112aa212114c28fe1084030f470474219bc7c
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 30 23:39:19 2008 -0700
* DBI::Row changes for convert_types; no tests yet
commit:: 3299bcb6493cd46959641dd129be5f6d58ee01f2
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 30 23:34:23 2008 -0700
* Added convert_types to DBI, this is propogated up through the various handles.
* Reformatted lib/dbi.rb
commit:: 4d0f31673a840528b527b27719652bbf0a6ab8e2
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 30 23:28:52 2008 -0700
* Ok, convert_types works through the whole handler chain now (still untested)
commit:: 45091467537e68cffd03c5be56a58d5b1f32b064
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 30 23:18:16 2008 -0700
* All handles now have a "convert_types" attribute
* DatabaseHandles now use the "convert_types" attribute to determine if they are to convert types :)
* the columns() method is now a required method for Database classes. Will raise NotSupportedError otherwise.
commit:: 74ededbef484b7d4bfe8d16c34c0dc418b89a62a
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 30 22:59:25 2008 -0700
* Converted all tests running w/ system() previously to now use rake's ruby(). This'll ensure the right ruby gets executed.
commit:: c04f2e9f2328f2def41ee77925660fe7a78748e2
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 30 22:58:10 2008 -0700
* Rakefile changes:
* test_dbi and test_dbd targets added to DBI rakefile. These test the DBD and DBI individually.
* test target in DBI rakefile now depends on the above targets
commit:: 2cb5402815de46f94ff72ea9a34ffe18d27061aa
Author:: Erik Hollensbe <[email protected]>
Date:: Tue Jul 29 22:35:06 2008 -0700
* Removed a lot of obsolete files in the build/ directory
commit:: 2d0f6b402449912f11999e89877b250e92b5bcb1
Author:: Erik Hollensbe <[email protected]>
Date:: Tue Jul 29 20:54:16 2008 -0700
* Gem prereqs for DBDs
commit:: 9824637cdd2563627a95386fb05d4e1967dd65e1
Author:: Erik Hollensbe <[email protected]>
Date:: Tue Jul 29 20:01:14 2008 -0700
* ODBC fixes
commit:: 0fb69f4f7af40df665afd29db13be7db8bbabced
Author:: Erik Hollensbe <[email protected]>
Date:: Sun Jul 27 21:25:57 2008 -0700
* Fix for #5336
commit:: d993fd1b78981ee26d2d91218646f4fde500166e
Author:: Erik Hollensbe <[email protected]>
Date:: Sun Jul 27 20:38:26 2008 -0700
* Q&D fix for null result set -> tableformatter - fix for #4944
commit:: 09fc86af845dc5bb8dbf2281c5b97b4716fe842f
Author:: Erik Hollensbe <[email protected]>
Date:: Sun Jul 27 20:17:01 2008 -0700
* Finally fixed files left around from the postgresql/test_blob.rb test. Thanks again Mike Pomraning.
commit:: a7519cbf170283b5e6f565d05982e0f753b572d1
Author:: Erik Hollensbe <[email protected]>
Date:: Sun Jul 27 20:09:06 2008 -0700
* Pg: integrated Mike Pomraning's patches from #18925:
* async support
* Native binds (yay)
* TypeUtil: conversion cascade changes
* Instead of checking if our object changed during a conversion attempt and
cascading down if it didn't, we now have a cascade flag (true or false) which
is used. This allows the driver to be more explicit.
* Many, many, many of these changes were the result of this modification.
commit:: 062447a9e228d66cdaf44ab1cdb73c2e09139149
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 17:24:49 2008 -0700
* Fix for Pg array parser and varchar elements (regression from \ fix in earlier commit)
commit:: 7511f9b9794a9504f314159a073f6e3885a5aa83
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 17:08:36 2008 -0700
* Mysql couldn't store blobs properly (the blob test wasn't running.. whoops)
* All strings were not properly escaping \ characters.
commit:: 4426ac9a65fd05d84a09354e2a0e06f5331894d5
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 16:53:43 2008 -0700
* Some statement tests for ODBC
commit:: afdda9620818e270666e5534851291db16122a87
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 16:46:57 2008 -0700
* ODBC working w/ general DBD tests
* Reformatted lib/dbi/row.rb
commit:: 5f5771a6bc69746f12e61622ee6b3f347253f520
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 13:50:35 2008 -0700
* Updated test/dbi/tc_dbi.rb reflecting Proxy.rb change
commit:: 2e3d8a1d2aa1c94b4821ac1b3273dfbb9037db5c
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 13:44:53 2008 -0700
* Proxy files are a goner; we'll resurrect them in 0.6.0
commit:: 4b447421ce0b4efdd93e49363db5c3389a445d1c
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 13:41:40 2008 -0700
* TODO updates
* bin/dbd_proxy never worked, it's now removed from release... hoping to touch on it in 0.6.0
* Removed un-used build/Rakefile.dbd.rb
* Updated Rakefile.dbi.rb gemspec to contain 'dbi' as an executable
commit:: 2f94d9439b06978cfa4f32b6050d3fa9c75db25e
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 13:20:09 2008 -0700
* Lots of fixes to bin/dbi
commit:: 2e9471d1b688aaaa6e2d4f493b0c267924af930f
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 12:33:45 2008 -0700
* A few fixes to tableformatter and bin/dbi
commit:: 68a62555c54897dd7d3ce2eef607739aa076f667
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 00:41:56 2008 -0700
* Fix for the DBI test that tests the version
commit:: 76fbf73f56bb1f4c008299eab1c23d80f337bfa7
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 00:40:31 2008 -0700
* Bumped version on DBI so gems will still work and have proper deps
commit:: d67ba5f69c8d47aa4dd007086f879ef5a685f6b1
Author:: Erik Hollensbe <[email protected]>
Date:: Sat Jul 26 00:37:20 2008 -0700
* Added dependencies for DBI
* Played around with lib/dbi/trace.rb; it's not going to stay. updated TODO
commit:: 0c1c2109f2599b96d22f2df2cb0accfb61d7a457
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 25 20:30:46 2008 -0700
* DBI and DBD Rakefiles both work as expected:
* DBI Rakefile includes the right files in DBI and DBD packages
* DBD .tar.gz and .zip files include all the tools to make gems, test, and repackage
* DBDs now attempt to require DBI, this is to ensure that testing works without DBI in the package.
commit:: e1eec1157fc79426d5d00ec6582bc16029a140ae
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jul 24 18:13:44 2008 -0700
* new required DBD constant: DESCRIPTION, which describes the DBD's purpose.
* Rakefile.dbi.rb is properly generating packages again
commit:: 1136a81721598dee5812a9723690d0dfaa7b4212
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jul 24 17:55:20 2008 -0700
* Stage 2 of Rakefile changes
commit:: 39c0cbb9e8a6c01653fac9c93e0ff188c2eb49dd
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jul 24 17:25:13 2008 -0700
* Moved /Rakefile -> build/Rakefile.dbi - alterations will come in next commit
commit:: 82a6d26d3e054239c72d528bab15c933537ec6f1
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jul 24 09:01:18 2008 -0700
* Created Rakefile.dbd (which does not work yet) for using with DBD packages
* Removed the DOC_FILES addition in most package specs, this was already being included elsewhere
commit:: 904ab1d452100b7c77e1b83dd679a83cb7b8630f
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jul 24 08:16:26 2008 -0700
* Rakefile changes:
* Stock 3.4.1 setup.rb in all .tar.gz's and .zip's now
* LICENSE/README/etc in all packages
* fixes to ensure all dbd portions are included
* DBD-specific tests are now included in packages
commit:: 556e08726d9716e5b06d558b8250eb9f0d06df9e
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 23 17:28:00 2008 -0700
* removed bin/PATHCONV and translated the affected filenames
commit:: 6d19af7147e4be01363613426610d29e00f72faa
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 23 17:26:51 2008 -0700
* Moved scripts to bin directory instead of the subdir thing they were in
commit:: e4b250f620eab7a2aa2f29de8fe70d066e0fdc1b
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 23 17:16:27 2008 -0700
* Sybase DBD is GONE
* New setup.rb
commit:: b40c85c821a3ef36918386f7097646226d21c2eb
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 23 16:08:10 2008 -0700
* Removed that nasty ColumnInfo mixin in the Mysql DBD
commit:: 724ac6bf6d5642442eacd8e1b6254740574997ea
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 23 16:06:44 2008 -0700
* Fixed DBD tests re: forcing all ColumnInfo keys to symbol
commit:: b5c21526df27da7eafea5a9969d46d3fdd681e0a
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 23 15:55:19 2008 -0700
* Removed a lot of cruft from ColumnInfo & Tests
* Added deprecation warnings to the aliases provided in ColumnInfo
commit:: 89ec97e6eb14268d7cc0a117bf4b3c7245a9a802
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 23 14:23:02 2008 -0700
* ColumnInfo is now a DelegateClass of Hash, instead of inheriting from Hash directly.
commit:: bd9ff5bc608fadda89c9df4b57f321b35a5a83dd
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 07:53:18 2008 -0700
* Added a nullable requirement for all drivers in dbh#columns.
* Fixed a pretty nasty bug getting pkey/unique information in the Pg driver
commit:: a12c25181800a258c4085a48925e15eb96295863
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 06:50:42 2008 -0700
* Precision/Scale tests: now works both in columns and column_info output for all drivers
commit:: fa6df70c17e589d6977831543ceaf43885a5ba9d
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 04:18:46 2008 -0700
* Integrated precision_test table into column and columninfo tests. Required collateral changes below.
* New Type: DBI::Type::Decimal to represent DECIMAL and NUMERIC types, falls back to Float, parses to stdlib BigDecimal.
* TypeUtil's generic conversion map was updated to handle this type and appropriately communicate it in a query.
* MySQL treats NUMERIC/DECIMAL as type 246, which isn't in the TYPE_MAP and therefor never got mapped properly.
* This impacted the sum bugfix from pre-0.2.0, converting it to BigDecimal. I think this is an improvement.
commit:: b3584e283d86a95f128cf87133f6c355f57b0306
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 03:37:22 2008 -0700
* Added precision_test table to all DBD tests
commit:: 73de88a98b1d4477c8309759bf3772e06a053d3c
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 03:27:10 2008 -0700
* sth#column_info tests
commit:: 989aa098eff6fa306a123d5cac6f6b0441c732fc
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 03:12:35 2008 -0700
* Some dbh#columns tests that validate columninfo data across all DBDs
commit:: ed963700ac6bdfaa91178d2fca56abb39fce4c34
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 02:58:30 2008 -0700
* Renamed ColumnInfo to DBI::ColumnInfo
commit:: f6f18a7d39a689af1bc6cf426c9df9b5797677de
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Jul 18 02:38:14 2008 -0700
* Deprecated with warnings: DBI::Date, DBI::Timestamp, DBI::Time
* Added gem dependency 'deprecated' gem
commit:: 55322e5554dd690066f24b82bb4d152b07cb7bee
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 10:26:25 2008 -0700
* Boolean tests
commit:: 878a057cd7e0dac6982ebafe991d6c374a5cfd32
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 10:22:19 2008 -0700
* NULL type coercion
* Fixed a *lot* of bugs related to these tests :)
commit:: e9a8f0bf8da1a9a3314c0edce88c62e8ec5dd309
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 09:03:45 2008 -0700
* More type system tests
commit:: afad45a26658ee9431b01983ef2eda1aed206cdf
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 08:19:53 2008 -0700
* More type tests
commit:: 172c87f5e6cb122094940727a3e939ddb0a0f76e
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 08:11:13 2008 -0700
* test/dbi/tc_types.rb: DBI::Type and DBI::TypeUtil tests
commit:: e0df6c9ae41c1f81a5156a9ab97d0e0defd052a2
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 07:32:00 2008 -0700
* Broke up SQLite3 driver
commit:: c9d39cc800deb4f5738ad6f838d4024d16d2b7c3
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 07:18:22 2008 -0700
* Broke up SQLite driver
commit:: d88476b1f969053bd1a577914c74329e7ad70dd7
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 07:14:35 2008 -0700
* Broke up Pg DBD
commit:: 7ecc56e48076bd6e67aa054a2be120ec4b334a69
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 07:01:30 2008 -0700
* Even more readable
commit:: 310d615b266ca7572dd0fcf6e64834419972b141
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 07:00:34 2008 -0700
* Base Mysql DBD a little more readable now
commit:: 74de7ae7cb2ca09172a08208cb86d5b2cbc8e5fa
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:59:26 2008 -0700
* Mysql DBD broken into several parts
commit:: 7db39811774f0fd7e488784fa5376f45ae330ff2
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:39:29 2008 -0700
* removed unused version.rb file
commit:: ca71d1cabc6c794928bb6dfe96deab0c083d6ee7
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:38:23 2008 -0700
* Moved DBI::TypeUtil to separate file
commit:: d0f196c972f41e9abb1b766514b58265041bb75a
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:34:22 2008 -0700
* Moved DBI::SQL:PreparedStatement to its own file
commit:: 31aaffe228e109a8414102ad67bb80fc6701309b
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:30:41 2008 -0700
* DBI::SQL::BasicBind and DBI::SQL::BasicQuote are now things of the past
commit:: b53d794f89461972ef304656ba84679800c91a4b
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:20:24 2008 -0700
* Broke up DBI::Utils::* namespace into separate files
commit:: f8c4f21bfcfc23afeee9046e4df9b837aa9d91ad
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:09:07 2008 -0700
* Nixed superfluous find require
commit:: 748ab1688fd37e139fcef820cf4c44a01287681a
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:08:17 2008 -0700
* Moved DBI::Base::* to separate files
commit:: 0174ee2952308ca7f4528047372a4e2af6490b79
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 06:03:23 2008 -0700
* Broke handle classes out into separate files
commit:: 001b38df88f6ac86a4c83fdcdee7503b85bdea2e
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 05:57:06 2008 -0700
* Yanked DBI::Binary, Exception classes, and SQL_* constants out into their own files
commit:: 6651c7ecacb195c89212e0899b2f24e8f8cac0b2
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 04:23:42 2008 -0700
* DBI and SQLite binding API slightly differs and both produce mildly
different results when testing, the tests were modified to take advantage of
this without copying code.
commit:: d92b9e3a31f599ab0fb3502b5af87f1c49f99324
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Jul 16 04:01:03 2008 -0700
* SQLite3 driver now works with new type system
* Removed some deprecated fetch specializations that would never be called due to the new way fetch is handled
commit:: f88beb99ddea04ed25b47a2148e759f777a65e39
Author:: Erik Hollensbe <[email protected]>
Date:: Tue Jul 15 23:28:26 2008 -0700
* Case-insensitive require fixes in DBI
* Binding API fixes for MySQL
commit:: 204ab87a01022a79d4a5e7781e22911944ab79f8
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 19:29:28 2008 -0700
* Cleaned up DBI tests. Removed several.
commit:: eafb622a020b08664db9dffbbd7f28da96caf48a
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 19:05:18 2008 -0700
* WARNING: Most DBI tests are broken right now
* Gutted quoting system entirely, favoring the new type system to handle it.
* ByteA is now a type, PGcoerce module is gone, gone, gone.
* Removed quote instance methods in Pg, replaced with a quote class method for aiding types
* All complex types use the E'' quoting syntax now, which should make Pg happier.
* Small changes to the type system:
* Conversions will now only cascade if the object remains unchanged. This prevents double-quoting.
* All recognized types should be properly quoted now.
commit:: 7c8e5242ef7f2b4764a07882769d1a920a934f6d
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 16:46:11 2008 -0700
* Type conversion seems to be doing its job
* ByteA probably still isn't working right.
commit:: 1d9307bdb592168ac64bb6884b0d29c9231cfe5e
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 15:05:03 2008 -0700
* New method: DBI::TypeUtil.type_name_to_module converts the type_name from columns output into a class
* original functionality decoupled from DBI#column_types
* DBI::DBD::Pg::Type::Array now has a base_type attribute to explain the encapsulated type
* Pg columns now returns array types as a dbi_type with a constructed Array object as the value
* More tests for Pg arrays
commit:: 8df9e250bc88a1e5af242b2ebe7340afbf1262e9
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 14:44:11 2008 -0700
* Pg array -> Ruby array parser (with types) working now
commit:: c0747f49424fe482d503008c1ffebbb973b22534
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 13:05:38 2008 -0700
* An attempt at converting ruby arrays to Pg arrays in the Pg driver
commit:: a43f3e3c1b4878c4ecb65c9d64ff79eb58680803
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 12:16:22 2008 -0700
* Shifted types of arrays:
* Types in columns output will now reflect the base type of the array (integer, varchar, etc)
* The flag "array_of_type" will be set to true if the column is an array
* Note: there is still no indication of the dimensions or any information about those dimensions.
commit:: f3c802c35b417118b29a948c91d3c736fd62c882
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 11:32:17 2008 -0700
* Lots of healthy TODO modification
* test/dbd/postgresql/test_arrays.rb filled out a little bit
commit:: 8aa84cd97503244f204efcf07afede10cc2827ea
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 14 09:36:04 2008 -0700
* array table added for Pg
commit:: e685648e01aed1cfbc47415faa6d7c4b94609798
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 7 03:16:30 2008 -0700
* DBI::DBD::DIR is *gone*
* load_driver rewritten and simplified
* new support methods to enumerate available DBDs
commit:: 5481609ad0a18a56727b1582b15c33a0692011d9
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 7 02:40:34 2008 -0700
* Removed all deprecated drivers (see TODO list for current exceptions)
* Updated TODO
commit:: 7ac4465c99a24708d93d3f99dd688db0c981e4f2
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Jul 7 02:39:13 2008 -0700
* Pg array test stub
commit:: 4bc3429cb83caec67e6019a94c75d80577d41dab
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Jun 12 12:50:03 2008 -0700
* Fixed a faulty tables test that will never be consistent across many postgresql versions
commit:: 4553990f05884ec9e57bd7b4a21bc9f12eb3edc2
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 04:37:55 2008 -0700
* Indentation fixes to Mysql driver
commit:: e7f7fcbff57f79da9ff5b99c702ea9d77c06cedb
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 04:33:40 2008 -0700
* Mysql driver/tests updated for types API
commit:: bce8e2388b5b4cc911ebe6ac047f20bf942ee269
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 04:13:51 2008 -0700
* Added a couple of comments.
commit:: 458f3212cdee4fa7ccfae696d63b4d59df59946c
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 04:12:50 2008 -0700
* Removed dead code
commit:: a68b55ccf2eaa8f46b095c91820efd423159f446
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 04:11:51 2008 -0700
* Some indentation fixes
commit:: 58fced679c997a34533a3b73b9a2c61a44976959
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 04:07:10 2008 -0700
* Postgresql driver/tests working
commit:: 0c4fb698b5b87a4c359223c54626e841be746ff1
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 02:21:54 2008 -0700
* Fixed DBI tests
commit:: aace8131284ec5dea62d147eb4f1486aa88211ee
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 02:15:10 2008 -0700
* Fixed sqlite tests
commit:: 6345cd1a6929ef396c4f661220e1a8e1eda9f1d2
Author:: Erik Hollensbe <[email protected]>
Date:: Fri Apr 25 02:14:10 2008 -0700
* Fixed sqlite3 tests
commit:: ec003651a813c8dc1a3408bc332fb139dd02a3a4
Author:: Erik Hollensbe <[email protected]>
Date:: Wed Apr 23 21:19:39 2008 -0700
* Starting in on fixes to the pg driver
* Lots of test changes -- mostly storing statement handles as a class var so we can finish them if the test fails
commit:: 87d084e9e12fbe1e9e853d3ad3c4c73f21b4c033
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 17:18:01 2008 -0700
* Fix for the Rakefile that tests the ability to require the drivers before building namespaces for them
* Many fixes to test/dbd/general/test_types
* Many fixes to SQLite3 driver regarding type handling
commit:: 41e082f10a697ab072fa77cf125d91d3131c726d
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 14:22:18 2008 -0700
* removed some commented out code from the SQLite3 driver.
commit:: 6801d689c01782242d92546fe290142cabbd589a
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 14:06:58 2008 -0700
* Null handling
* removed type conversion from SQLite driver
commit:: 6b53384d47c2b946e811128a49c844c4f49dd921
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 13:53:08 2008 -0700
* Fixed Date/Time parsing
commit:: 8b76da9c00dcb6cbb32c88ae00f116443eb8905e
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 13:43:26 2008 -0700
* Inbound parameter conversion
commit:: f72d55ab4dd321b4668dfc239758c9c68ba8d83b
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 12:27:19 2008 -0700
* Moved parse logic from SQLite3 driver to DBI::StatementHandle#column_types
commit:: 27938c99e9986cc4ba9cc2fe395dd25909772c80
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 12:21:48 2008 -0700
* A basic dry-run of DBI::Type.parse for various types
commit:: 2cc28948db2205073fc2f86067cd7fafc189bd16
Author:: Erik Hollensbe <[email protected]>
Date:: Thu Apr 17 11:23:58 2008 -0700
* Added dbi/types to require list
* Added a copyright notice in the source
commit:: fadc02793d86ffdf4dea84cb71f727a8b5ce9f72
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Apr 14 12:00:54 2008 -0700
* Added a StatementHandle#dbh parameter to get the dbh that created the statement handle
commit:: 99304f17ca5cc5cbe8b7caddc917f259d2d71d70
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Apr 14 10:06:21 2008 -0700
* Added a "driver_name" property to DatabaseHandles that yields the driver name information as a string.
* Reformatted the majority of dbi.rb
commit:: ec63e12741da5cd40b9a7ac3b26e15ee622d4d4c
Author:: Erik Hollensbe <erikh@speyside.(none)>
Date:: Fri Apr 4 08:38:51 2008 -0700
ColumnInfo sanity patch by Pistos
commit:: b87cd704db9a6bf031255ae7ca30b70e0df621e0
Author:: Erik Hollensbe <erikh@speyside.(none)>
Date:: Sun Mar 30 22:20:23 2008 -0700
* Initial (untested) types implementation. Still workin' on it.
commit:: f0c124d920ef6996ea63400686a563c6e89cf694
Author:: Erik Hollensbe <[email protected]>
Date:: Mon Mar 24 09:24:48 2008 -0700
* basic prototype/description of type handling