-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathChangeLog
executable file
·1430 lines (1116 loc) · 58.6 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
2010-08-11 Patrick Galbraith <[email protected]> (4.017)
* BUG #60085, Andreas Koenig's patch for DBI changes
* Updated documents
2010-07-10 Patrick Galbraith <[email protected]> (4.016)
* Disabled mysql_bind_type_guessing due to one performance issue
querying on a indexed character column unquoted will mean the index
is not used
* Fixed int types that should be bools
2010-07-09 Patrick Galbraith <[email protected]> (4.015)
* BUG #56664 fixed t/40blobs.t skip_all logic (W. Phillip Moore)
* BUG #57253 Fixed iteration past end of string (crash). (Chris Butler)
* Added a new parameter for old behavior- mysql_bind_comment_placeholders which
will make it possible to have placeholders bound for those who really
want that behavior.
* Fixed bind_type_guessing - always on now
2010-04-14 Patrick Galbraith <[email protected]> (4.014)
* BUG #30033 Fixed handling of comments to allow comments that contain characters
that might otherwise cause placeholder detection to not work properly
* BUG #53844, Fix for memory leak in stats. (Gregory Burmistrov)
* BUG #49719, Fix for handling of NULLs in prepared statements (Gert Pache)
* BUG #55627, Fix for testing failure due to strict mode (Yves)
* BUG #51784, Fix for mysqladmin on Windows in Makefile (Zeeshan Muhammad)
* BUG #41630, Typo in Makefile
* Had to define true and false in dbdimp.h. Didn't work out of the box on Linux
2009-09-16 Patrick Galbraith <[email protected]> (4.013)
* #49484: PATCH add support for MYSQL_INIT_COMMAND - Peter John Edwards
* #48242: 'mysql_bind_type_guessing' doesn't work correctly
with minus sign - Thanks Serguei Trouchelle!
* #45616: t/40blobs.t cannot pass without database access -
ServerError() not declared - Thanks ysth http://ysth.livejournal.com/
2009-06-18 Patrick Galbraith <[email protected]> (4.012)
* Patch to bind_type_guessing from Craigslist,
Thanks to Chris! Happiness is no quoted numbers.
Fixed ChopBlanks to work with bind_type_guessing
* Patch for win32 strawberry build
Thanks to Curtis Jewell! Windows needs love
* Patch for auto-reconnect to set active flag
Thanks to Doug Fischer!
* Fixed bug 32464 http://bugs.mysql.com/bug.php?id=32464.
See https://rt.cpan.org/Ticket/Display.html?id=46308
Add connection flag mysql_no_autocommit_cmd which users of
MySQL Proxy can use to prevent 'set autocommit=#' from being
issued by the driver. 'perldoc DBD::mysql' to see how to use
this new flag
* Added bind-type-guessing options to Makefile.PL so the entire
test suite can be run with bind_type_guessing set.
2009-04-13 Patrick Galbraith <[email protected]> (4.011)
* Renamed unsafe_bind_type_guessing, fixed some of the logic. This
can be used to deal with bug 43822
(https://rt.cpan.org/Ticket/Display.html?id=43822)
* Patch from Daniel Frett (daniel Dot frett At ccci Dot org) to fix
issue of binding sever side integer parameters (server-side prepare
statements) resulting in corrupt data, bug 42723
(https://rt.cpan.org/Ticket/Display.html?id=42723)
* Updated documentation, cruft cleanup (as always)
2008-10-24 Patrick Galbraith <[email protected]> (4.010)
* Fix to dbd_bind_ph() for uninitialized value 'buffer_length'
thanks for bug report and patch from Askniel.com (thanks!)
2008-10-21 Patrick Galbraith <[email protected]> (4.009)
* Fix to re-enable TAKE_IMP_DATA_VERSION. Still have to ensure DBI version 1.607 or higher
* Fix to escaped single quotes throwing off bind param detection. Patch from Zhurs ([email protected]) Spasibo!
2008-8-15 Patrick Galbraith <[email protected]> (4.008)
* Multi statement patch, thanks to Chris Heath!
* Disabled TAKE_IMP_DATA_VERSION because segfault with DBI < 1.607
* #29528: bind_param(..., SQL_FLOAT) ignores exponents - fixed, Thanks to
Tokuhiro Matsuno!
* Cleanups to make mysqlEmb work under Cygwin - Thanks to Chris Rodgers
<http://rodgers.org.uk/> !
* Modified and disabled tests for MySQL version < 4.1 for unsupported features
2008-5-11 Patrick Galbraith <[email protected]> (4.007)
* Took out mysql_server_init call where not needed
* Complete re-write of test suit to use Test::More - tons of cleanups!
* Makefile.PL changes to use current user in 'make test' if not defined
2007-12-26 Patrick Galbraith <[email protected]> (4.006)
* Cleanups on OS X compile
* Fixes to syntax errors on AIX
* Removed test code that was leaving trace files around
2007-3-22 Patrick Galbraith <[email protected]> (4.005)
* Fixed mysql_warning issue < 4.1 (reminers, patches, help from ROAM, (issue 25713)
* makerealclean patch from ROAM (issue #25714)
* sqlstate cleanup patch from ROAM
* Replaced all references to dbis to use imp_xxh per DBI best practices
* Fix to dbd_st_destroy - added back previously removed 'free everything' code which
had been moved to dbd_st_finish, causing a crash upon freeing of bind values
after all rows resulting from one execution of a query have been fetched. This meant
that next attempt to execute the prepared statement would segfault. This
work thanks to Rainer Weikusat!
* Removed all 'FindNewTable' calls in all tests. Just use 't1' for all tests to
simplify things. Plus, this is how MySQL internall tests.
* Better 'skip test' logic in some tests that were still running when they shouldn't
have been.
2007-3-22 Patrick Galbraith <[email protected]> Jim Winstead <[email protected]> (4.004)
* Work around a bug in old 3.23 servers by specifying NOT NULL for fields used
as a primary key in tests. (Bug #20325, reported by Julian Ladisch)
* Add support for mysql_warning_count statement handle attribute. (Bug #25457,
patch from Philip Stoev)
* Add support for mysql_multi_statements connection option. (RT #12322, based
on patch from Doug Morris)
* Had to bump to 4.003 do to print statement in mysql.pm that made it
into the dist. Even though you can delete a file on CPAN, you cannot
re-upload it if it's the same name. Mea Culpa.
* UTF8-Flag not set with flag mysql_enable_utf8 and column collation utf8_bin patch,
Joost Diepenmaat, (RT #24738)
* Fixed do_error definition (Scott Hildreth, Tim Bunce)
* Conversion of test suite to Test::More
2007-3-5 Patrick Galbraith <[email protected]> Jim Winstead <[email protected]> (4.003)
* Fix inclusion of non-primary keys in primary_key_info. (Bug #26786,
reported and patch by Dave Rolsky)
2007-3-1 Patrick Galbraith <[email protected]> Jim Winstead <[email protected]> (4.002)
* Fix re-exec of Makefile.PL when forcing $ENV{LANG} to 'C'. (RT #25233,
reported by Slaven Rezic)
* Rewrote table_info method to support all arguments (previously it would
only ever return all of the tables in the current database, no matter what
was specified)
* Fixed $DBD::mysql::VERSION to be a string instead of a float, which caused
problems for certain locales
* Fixed bug #23974. $dbh->column_info now returns handle with no rows upon
table not existing. Much thanks to Tim Bunce for help fixing the problem
in mysql.pm vs. dbdimp.c
* Removed #ifdefs for do error (sqlstate being passed as last arg depending on
version)
* Fixed insertid test to work with auto_increment_increment replication setup.
* Patch from Tim Bunce fixing do() not set $dbh->{Statement} attribute,
which prevented DBD::Profile from giving correct results for calls to do()
and causing ShowErrorStatement to possibly report the wrong statement in the
error message
* Patch from Tim Bunce clearing out the sth attribute cache when switching
between result, sets which prevented the adjustedment of NUM_OF_FIELDS
* Cleanup of several unused variables
* Added support for wildcards in last argument of column_info().
* Add mysql_is_auto_increment to results of column_info(). (Bug #26603,
original patch from Dave Rolsky)
* Return the correct table type for both tables and views from the table_info()
method. (Bug #26603, original patch from Dave Rolsky)
* Add implementation of foreign_key_info() (Bug #26604, original patch from
Dave Rolsky, and final implementation based on Connector/J code)
2007-1-8 Jim Winstead <[email protected]> Patrick Galbraith <[email protected]> (4.001)
* Fix handling of unsigned integer values in result sets when using
server-side prepared statements (they were not retrieved at all).
* Fix handling of signed integer values when using server-side prepared
statements (they were being forced to unsigned values).
* Do not tell Perl that the contents of binary fields are UTF-8.
[rt.cpan.org #22123], original patch by Joost Diepenmaat
* Fix double-free of bound parameters when freeing statements. (Bug #20559)
* Make sure to handle "magical" values in a couple of places. (Bug #20104)
* Update the hints about what to do when zlib is found missing while
linking. (Bug #13803, reported by Philip Stoev)
* Explicitly initialize the MySQL client library to avoid possible race
conditions in a multithreaded application. (Bug #21792)
* Fix warning when no connection attributes are passed to the connect
method (Bug #17323, reported by Phil Randal)
* Removed redundant warnings when commit or rollback is called while
AutoCommit is enabled. [rt.cpan.org #15802], reported by Tyler MacDonald
* Report correct type for decimal columns from MySQL 5.0 and later
[rt.cpan.org #18294], reported by Ray Zimmerman
* Fix t/40bindparam.t to work when ANSI_QUOTES SQL_MODE is set.
[rt.cpan.org #21521], reported by David Wheeler
* Return a statement handle with an error when column_info is called on
a table that does not exist. (Bug #23974, patch by Philip Stoev)
* Fix handling of table names with characters that did not match /\w/ in
the column_info method. (Bug #22005, reported by Philip Stoev)
* Fix handling of negative integers bound to a column marked as SQL_INTEGER.
[rt.cpan.org #18976], patch from Mike Schilli.
* Add support for the primary_key_info method. [rt.cpan.org #8541]
* Fixed Bundle::DBD::mysql to only include modules required for using
DBD::mysql, not the old Mysql package. [rt.cpan.org #24096]
* Updated Makefile.PL to not include files in .svn directories
* Fixed various compile warnings in mysql.xs (ISO C)
* Cleaned up stored procedure examples, made strict
* Fixed bug that blew away subsequent result sets if you fetched all rows, only in
result sets that had more than one row
* Added test for bug #14979 http://rt.cpan.org/Ticket/Display.html?id=14979, which still
fails
* Tested with ALL mysql versions, fixed 40types, 40bind_param tests to work with 4.0, 4.1
* Fixed dbdimp.c to not test for MYSQL_DATA_TRUNCATED unless >= mysql 5.0
2006-12-22 Patrick Galbraith <[email protected]>, Alexey Stroganov (4.00)
* Added Alexey Stroganov's patch which fixes varying number of columns in
multiple result sets. Added new test cases to 80procs.t based of his
test script (bug #21028) (Thanks Alexey!). Also fixed 80procs.t to allow
'CALL' to be prepared
* Added Philip Stoev's patch for DATA_TYPE date and time columns (bug #23988)
(Thanks Philip!)
* Reworked (for working with 4.0, which doesn't support sqlstate) Philip Stoev's
patch for sqlstate, bug #23935 (Thanks Philip!)
* New Versioning! 4.00 now. This dev tree will now become trunk
* Cleaned up much code that failed between versions (!!!)
* Turned off prepared statements by default
* Tested this with 5.1, 5.0, 4.1, 4.0. Works with ALL these versions!
2006-10-10 Patrick Galbraith <[email protected]>, Alexey Stroganov (3.0009_1)
* Added fbind and bind alloc to dbd_st_describe. This was causing a crash
when using with mod_perl
2006-10-10 Patrick Galbraith <[email protected]> (3.0008_1)
* Added patch for SSL Verify Certificate (Thanks Eric Chen!)
* Added multiple fixes to dbd_st_prepare which fixed variable overwrite
and unset increment counter. Also improved loop which checks statements
for presence of "LIMIT" by using a pointer as opposed to char array
increment variable. These errors were showing up in OpenBSD and other
Unixen (which I think all BSD-based) (Thanks to Kyle George!)
* Added fix to Makefile.PL to obtain correct build flags on VMS
(Thanks to Eric Milkie!)
* Fixed casting of num_params to unsigned int in calls to NewZ in mysql.xs
2006-10-07 Patrick Galbraith <[email protected]>, Jim Winstead <[email protected]>
(3.0007_2)
* Added UTF8 patch from Dominic Mitchell (Thanks!)
* Fixed declaration of "row" in mysql_st_internal_execute which caused compile
errors on some platforms
* Fix documentation for _ListDBs to remove incorrect information about
limitations of data_sources(). (RT #20843, patch by Ann Barcomb)
* Fix typo in example (missing quote). (RT #15086)
* Mention in POD that 'localhost' always means to connect via UNIX socket,
and 127.0.0.1 must be used for TCP/IP to localhost (RT #14942, reported by
Alessandro Ranellucci)
* Fix typos in Makefile.PL (RT#16178, reported by Gavin Shelley)
2006-09-08 Jim Winstead <[email protected]>, Patrick Galbraith <[email protected]>
(3.0007_1) (3.0006/3.0006_1 is the same as 3.0005/3.0005_1)
* Make sure to call dbd_st_finish when all rows from a statement handle
have been fetched. (Bug #20153, Bug #21607, RT #20464, RT #21241)
* Patch from Steve Hay to fix bind_param to deal properly with insertion
of a NULL into an INT or DOUBLE column using server-side prepare.
Converted Steve's dbi.pl script to expose this problem to 40bindparam2
test.
* Fix to mysql_st_internal_execute to keep from passing undefined dbh
handle member (bind_type_guessing) to parse_param causing crash on
OpenBSD. Reported on rt.cpan.org (#20868) by Kyle Georg, as well as
info from Sam Smith and Federico Giannici
* Cleaned up tests to make sure test table is dropped at end of test.
2006-06-10 Patrick Galbraith <[email protected]) (3.0005)
* Fix dbd_st_finish in 3.0004 didn't clean up bind buffers resulting in
a memory leak. See eg/prepare_memory_usage.pl to see how this manifests
itself. Thanks to Jason Snell for giving me a good script to reproduce
this!
* Fix to parse_params, mysql.xs dbh->do, and bind_param to deal with
passing substr to "do" for placeholder value. Thanks Martin Waite for
the patch to parse_params (extended to mysql.xs "do" and bind_param for
server-side prepared statements.
2006-05-17 Patrick Galbraith <[email protected]) (3.0004_1)
* Fix dbd_st_finish which closed the handle prematurely (Martin Evans)
* Compile issues (Martin Evans)
* Small change to get utf8 data returned. One still has to:
$dbh->do("set character set utf8");
$dbh->do("set names utf8");
to get utf8 back and even then you only get it back if the
column is defined as utf8 in mysql.
* Fix to dbd_bind_ph to deal with numbers (ints, floats) correctly
(Alexey Stroganov)
* Test changes - bind_param 41 and 42
* Turned off 70takeimp test
2006-04-29 Patrick Galbraith <[email protected]) (3.0003_1)
* Removed old Msql-Mysql Driver emulation code - finally!!!
* Removed aweful string testing code (that I wrote) for unsported
statements and now use mysql_stmt_prepare, if statement not
supported, toggle to mysql_emulated_prepare
* Fixed bug where failed stmt execution caused later statements
to fail with mysql_stmt_reset
* Added tests for unsupported statements
* Added test for test of failed statement with subsequent executes
(thanks to Martin Evans!)
* Added typo fix (Martin Evans)
* Added support for ParamValues and associated test (Martin Evans)
* Removed old emulated driver tests (HOORAY!)
* Cleaned up debug printing code
* Fixed syntax for create table ENGINE=InnoDB instead of type=innobase
* Cleaned up tests
2006-01-31 Patrick Galbraith <[email protected]> (3.0002_5)
* Fixed bugs 15546 (selectcol_arrayref failing on SHOW TABLES)
and 15665, 'USE dbname' failing when driver is not in emulated
prepare mode
2005-10-26 Patrick Galbraith <[email protected]> (3.0002_4)
* Added Guy Harrison's patch for multiple result sets
* Fixed bugs with declarations in middle of functions
* Cleaned up code, rewrote several loops using pointers
instead of iterators
* Rewrote 'SHOW', 'ALTER', 'CALL', 'CREATE' toggling code that turns
off server prepared statements (these calls are not supported)
* Updated documentation
2005-09-28 Patrick Galbraith <[email protected]> (3.0002_3)
* Added code to mysql_st_internal_execute that determines whether the
SV *h is a sth or dbh, and then imports imp_dbh appropriately
2005-09-26 Patrick Galbraith <[email protected]> (3.0002_2)
* Fixed bug in dbd_st_execute where imp_sth was being
imported unecessarily, when only imp_dbh is needed. This caused a
core dump in some cases. Thanks to Andy Maas at Proofpoint for his
execellent detective work!
* Small changes to Makefile.PL to make sure --ps-protocol works as
advertised.
* Updated install.html with current info about prepared statements and FC
RPM/YUM packages.
2005-08-04 Patrick Galbraith <[email protected]> (3.0002_1)
* Prepared statement support is default now. To turn it off
a parameter 'mysql_emulated_prepare' must be turned ON
* Better error handling in mysql_internal_execute_ps (renamed
from mysql_internal_execute41). Also free the result if error -
that could have been a memory bug
* Added a simply 'do' to t/35prepare.test to see if you can turn
off prepared statements in the 'do' call.
* Cleaned up a LOT of cruft. Added more 'caveat' blurbage to old
Mysql.pm lib, which will not work with prepared statements
2005-07-06 Parick Galbraith <[email protected]> (3.0001_3)
* Fix to ensure MYSQL_BIND is only defined when mysql
client version is >= 4.1.3. Thanks to Tom Parkison
2005-07-06 Patrick Galbraith <[email protected]> (3.0001_2)
* Fixed runtime bug (when inserting or updating quotes or double quotes)
(Thanks to Brad Choate, Six Apart Ltd.)
2005-07-04 Patrick Galbraith <[email protected]> (3.0001_1)
* Changed uint argument in safe_sv_fetch to int due to
uint not being available on windows unless you include
my_globals.h in dbdimp.h, which also breaks on unixen!
* Removed // comments from mysql.xs (thanks Bodo Bergman!)
2005-07-03 Patrick Galbraith <[email protected]> (3.0000_0)
* Special Thanks to Steve Hay for his patch to fix windows
* Fixed Makefile.PM for windows compiles
* Removed long long type from dbdimp.h
* Changed strncasecmp to strncmp (still need a better long-term solution)
in dbdimp.c
* Modified Makefile.PM to make prepared statements on by default
2005-04-26 Patrick Galbraith <[email protected]> (2.9015_3)
* Added patch from Stas Beckman for new DBI feature take_imp_data, needed
for DBI::Pool
* Fix to Statement.pm for old API call for numfields that caused
warnings on 40numrows and akmisc tests
* Fix to bind_ph to throw an error if trying to bind a non-numeric
value as numeric
* Better fix for dealing with error condition in $sth->rows()
* Fix to bind_param to throw error when trying to bind a non-numeric as
numeric
2005-04-04 Patrick Galbraith <[email protected]> (2.9015_2)
* Merged all code changes from 2.900x tree from the last 9
months
- unsafe bind type guessing patch from Dragonchild
- Removed mysql.mtest
- Fixed sth->rows to return my_ulongloong and also handle
error from client API
- Fix to make autocommit work was already part of this version
- Auto-reconnect bug fixed in 2.9006 included
* Added simple test to 35limit test to check if using malicious code in
LIMIT ?, ? placeholders works, which it doesn't.
* Fix that sets mysql_server_prepare to 0 if SQL statement is 'SHOW ...'
which is not supported by prepared statement API currently
2004-10-28 Rudolf Lippan <[email protected]> (2.9015_1)
* Merged Makefile.PL from 2.9005_3
* Bumped version number to 2.9015 for release of Dev Branch. Which
will become 2.9020 when tested and merged into HEAD.
* fixed typo/compiler warning in bind_param_guessing
'*testchar' should have been 'testchar'.
2004-10-20 Patrick Galbraith [email protected] (Dev-2_9 - 2.9005)
* merged changes from 2.9005_1
* fix to blob in dbd_st_fetch (Alexey Stroganov [email protected])
In case of BLOB/TEXT fields we allocate only 8192 bytes in dbd_describe()
for data. Here we know real size of field so we should increase buffer
size and refetch column value
2004-07-25 Patrick Galbraith [email protected] (2.9004)
* Prepared statement support
* Use of mysql_stmt_* API (>= 4.1.3)
* mysql_shutdown fix
* MySQL Embedded Server support (Alexey Stroganov)
* Fixed link failure on MacOSX
* Cleaned up tests
* Fixed various compile warnings
2003-10-26 Rudy Lippan <[email protected]> (2.9003)
* Applied patch from Aaron and Chuck that added basic testing of the
table_info/column_info functions [Aaron Ross <[email protected]>]
* Applied patch removing Jochen Wiedmann's contanct information and
also removing the restriction on CD ROM distribution.
[Jochen Wiedmen <[email protected]>]
* The check for the innodb table type was broken so the transaction
tests were skipped even though the database supported transactions.
* :sql_types were not being inported in column info, so SQL_VARCAR was
thowing an error. Also, the :sql_types were not being pulled into
DBD::mysq::db package
* Patch for dbdadmin.t so that it respects username and password
[Alexey Stroganov <[email protected]>]
* Fix for memory leak in bind_param() introduced in 2.9002
(2.9002 changed bind_param so that changing the value of a scalar
after binding would not affect what was passed to execute eg:
$sth->bind_param(1,$foo);
$foo = 'bar'
$sth->execute() -- $foo would contain 'bar')
[reported by <[email protected]>]
* don't define dbd_discon_all so that mysql uses DBI's This fixes a
bug whereby DBD::mysql was dropping perl's destruct level.
* patch to myld so that it uses strict and fixes scoping problem
with $contents [Jochen Wiedmann <[email protected]>]
* Modified Makefile.PL so that it gives a usage message
if any unknown options are passed in.
* patch to INSTALL.pod on how to link DBD::mysql against
a static libmysqlclient [Jochen Wiedmann <[email protected]>]
2003-06-22 Rudy Lippan <[email protected]> (2.9002)
* moved pod into mysql.pm from mysql.pod
* Changed the default behaviour of mysql_found_rows, so now
'UPDATE table set field=?' will return the number of rows matched
and not the number of rows physically changed. You can get the old
behaviour back by adding "mysql_found_rows=0" to the dsn passed
to connect.
* Updated type_info_all() to be more inline with
what DBD::ODBC returns.
* Added attribute 'mysql_auto_reconnect' that allows the auto reconnect
behaviour to be toggled. :
** NOTE** The behaviour of auto reconnect has changed. If
either the MOD_PERL or the GATEWAY_INTERFACE environment variable is
set, auto_reconnect will default to ON; otherwise auto_reconnect
will default to off. Earlier versions of this driver would always
try to reconnect to the database on error; however, this is dangerous
because table locks could be lost without the application knowing.
* Fixed a segfault with failed reconnects that were trapped in an
eval. The next tine DBD::mysql tried to reconnect, the process
would segfault.
* Added statistics attribute, 'mysql_dbd_stats' which returns
a hash ref that contains 2 keys 'auto_reconnects_ok' and
'auto_reconnects_failed'.
* Fixed bug where strings that were used in numeric
context were not getting quoted on execute(). Now all
parameters are bound as varchar by default.
**NOTE** this is a change in behaviour that MAY cause problems
with some SQL statements. If quoted integers, for example,
cause any problems, use bind_param(<column_id>, undef, SQL_INTEGER)
to force a column to be bound as an integer.
* Added get_info() method. See 'perldoc DBI' for more info
* Added column_info(). See 'perldoc DBI' for more info [Tim Bunce]
2003-03-03 Jochen Wiedmann <[email protected]> (2.1026)
* Fixed the handling of case insensitive file
names. Jan Dubois, <[email protected]>
* lib/Mysql.pm (listdbs): Added support for user
name and password.
2003-01-21 Jochen Wiedmann <[email protected]> (2.1025)
* lib/DBD/mysql.pm: added support for optional
DBI->data_sources() \%attributes parameter.
Georg Rehfeld, <[email protected]>
* lib/DBD/mysql.pod: documented optional
DBI->data_sources() \%attributes parameter.
Georg Rehfeld, <[email protected]>
* t/dbdadmin.t: changed to use optional
DBI->data_sources() \%attributes parameter.
Georg Rehfeld, <[email protected]>
2003-01-20 Jochen Wiedmann <[email protected]> (2.1024)
* dbdimp.c: Fixed missing support for double quotes
in ParseParam. [email protected]
* Test suite: Multiple patches for Windows/CygWin (case
insensitive file names and the like). Georg Rehfeld,
* lib/DBD/mysql/INSTALL.pod: Added description on how
to install with Windows/CygWin. Georg Rehfeld,
2003-01-18 Jochen Wiedmann <[email protected]> (2.1023)
* Remove compiler warnings
Fix some small issues to get it to work with MySQL 4.1
(Mostly checking return values from MySQL API functions)
Michael Widenius <[email protected]> (2.1022a)
2003-01-03 Jochen Wiedmann <[email protected]> (2.1022)
* Added hints to Randy Kobes PPM repository, because
DBD::mysql is currently missing in ActiveState's
repository.
2002-11-18 Jochen Wiedmann <[email protected]> (2.1021)
* lib/Mysql.pm (errno): Added handling for non-ref
arguments. Raphael Hertzog <[email protected]>
2002-09-23 Jochen Wiedmann <[email protected]> (2.1020)
* Added mysql_local_infile option. (Paul DuBois,
2002-09-16 Jochen Wiedmann <[email protected]> (2.1019)
* Added hints to installing DBD::mysql with PPM 3.
(Stefan Prehn, stefanprehngmx.de)
* Added $DBD::mysql::CLONE
2002-08-12 Jochen Wiedmann <[email protected]> (0.2018)
* t/dbdadmin.t: The call to func('createdb') was
missing user name and password. Wolfgang Friebel
* mysql.xs: If the connect in func('...', 'admin')
failed, a core dump was triggered. Wolfgang
Friebel <friebelqifh.de>
2002-05-02 Jochen Wiedmann <[email protected]> (0.2017)
* dbdimp.c: Added a required check for mysql_errno.
Steve Hay <[email protected]>
2002-05-01 Jochen Wiedmann <[email protected]> (0.2016)
* dbdimp.c: Removed use of mysql_eof. Jay
Lawrence <[email protected]>
2002-04-30 Jochen Wiedmann <[email protected]> (0.2015)
* Makefile.PL: Removed dbimon and pmysql from
the EXE_FILES list. Andreas Koenig
2002-04-17 Jochen Wiedmann <[email protected]> (2.1014)
* dbdimp.c: Fixed mysql_is_auto_increment.
Paul Walmsley <[email protected]> and
Paul Dubois <[email protected]>
2002-04-12 Jochen Wiedmann <[email protected]> (2.1013)
* dbdimp.c: Added use of mysql_ssl_set.
Chris Hanes <[email protected]>
2002-04-12 Jochen Wiedmann <[email protected]> (2.1012)
* Some fixes in the docs. Paul Dubois <[email protected]>
* Added mysql_is_auto_increment. (Someone else, but forgot
his email, sorry!)
2002-02-12 Jochen Wiedmann <[email protected]> (2.1011)
* Makefile.PL: DBI::DBD is no longer loaded by
default, to allow CPAN's requirements detection
note and install a missing DBI.
2001-12-28 Jochen Wiedmann <[email protected]> (2.1010)
* Bumped version number in Mysql/Statement.pm to
1.24, so that it is always higher than that
from the Msql-Mysql-modules.
2001-12-28 Jochen Wiedmann <[email protected]> (2.1008)
* lib/DBD/mysql.pod: Fixed minor bug in an example.
2001-12-27 Jochen Wiedmann <[email protected]> (2.1007)
* Bumped version number in Mysql.pm to 1.24, so that
it is always higher than that from the Msql-Mysql-
modules.
2001-12-27 Jochen Wiedmann <[email protected]> (2.1006)
* Within AutoCommit mode, reconnect is now turned
off, because the transaction state is unpredictable
otherwise.
2001-12-13 Jochen Wiedmann <[email protected]> (2.1005)
* dbdimp.c: Added use of SvMAGICAL to dbd_db_quote.
Rudy Lippan <[email protected]>
2001-11-13 Jochen Wiedmann <[email protected]> (2.1004)
* Makefile.PL: Fixed handling of --testdb, --testuser, ...
2001-11-05 Jochen Wiedmann <[email protected]> (2.1003)
* bind_param now using mysql_real_escape_string
as well. Dave Rolsky <[email protected]>
2001-11-04 Jochen Wiedmann <[email protected]> (2.1002)
* Added mysql_ssl flag to DBI->connect.
2001-11-04 Jochen Wiedmann <[email protected]> (2.1001)
* Quoting now based on mysql_real_escape_string. Thanks
to Dave Rolsky <[email protected]> for suggesting this.
2001-11-02 Jochen Wiedmann <[email protected]> (2.1000)
* Portability changes for MySQL 4.
2001-05-25 Jochen Wiedmann <[email protected]> (2.0901)
* dbdimp.c: Fixed $dbh->{mysql_insertid}; added t/insertid.t
2001-04-01 Jochen Wiedmann <[email protected]> (2.0900)
* Added transaction support for MySQL.
(Bob Lyons <[email protected]>)
* dbd/dbdimp.c: Fixed MAXLENGTH warning; used to hint for
a not existing mysql_maxlength, which should read
mysql_max_length. (Paul DuBois <[email protected]>)
* Fixed installation problem when a directory was specified,
but did not exist. (Will Partain <[email protected]>)
* Fixed that mysql_errno wasn't used properly. (Chris Adams
* Fixed test suite problem, when user name and password
have been interpolated. (Bruno Hivert (LMC)
* mysql_insertid and mysql_affectedrows are no longer treated
as integers, but longs. Thanks to Michael G Schwern
2000-08-20 Jochen Wiedmann <[email protected]> (1.2215)
* lib/DBD/mysql/Install.pm (Initialize): Adding -lz -lgz by
default now.
* dbd/dbd.pm.in: Minor doc change.
2000-05-10 Jochen Wiedmann <[email protected]> (1.2214)
* dbd/dbdimp.c: Fixed bug that timestamp fields weren't quoted.
Chris Winters <[email protected]>
2000-04-26 Jochen Wiedmann <[email protected]> (1.2213)
* dbd/dbimon.in: Fixed tags in pod.
2000-04-15 Jochen Wiedmann <[email protected]> (1.2212)
* Makefile.PL: Fixed use of builder-provided passwords.
Buck Huppmann <[email protected]>
* Makefile.PL: Fixed WIN32 installation.
2000-04-03 Jochen Wiedmann <[email protected]> (1.2211)
* Fixed $dbh->{Name} (David Jacobs <[email protected]>)
1999-11-30 Jochen Wiedmann <[email protected]> (1.2210)
* Makefile.PL (SelectDrivers): Hopefully ensured that a README is
always created successfully.
* Makefile.PL: Fixed docs of --mysql-install etc. ([email protected])
1999-10-13 Jochen Wiedmann <[email protected]> (1.2209)
* Fixed bug in $dbh->tables(): Didnt't work with
empty databases.
1999-09-17 Jochen Wiedmann <[email protected]> (1.2208)
* dbd/bindparam.h: Added support for MySQL's double
quotes. (Although I don't like it. :-)
* dbd/dbd.pm.in: Fixed a lot of docs for deprecated
features in favour of current.
* Makefile.PL: Fixed use of -e (should be exists).
[email protected] (Thomas Schultheis)
* MONEY seems to be a numeric type with mSQL.
Ernst Paalvast <[email protected]>
1999-09-15 Jochen Wiedmann <[email protected]> (1.2207)
* dbd/dbdimp.c: Added mysql_connect_timeout.
Matthias Urlichs (<[email protected]>)
1999-08-29 Jochen Wiedmann <[email protected]> (1.2206)
* dbd/dbimon.in: Fixed a bug in tab completion. (FieldList was
used in scalar context). Thanks to "Scott R. Every" <[email protected]>
* lib/DBD/mysql/Install.pm (Initialize): Now checking for MySQL
version 3.22 or later.
1999-08-22 Jochen Wiedmann <[email protected]>
* lib/DBD/mysql/Install.pm (Initialize): Added sco\d+* to the list
of SCO-like operating systems. Thanks to Jukka Inkeri
1999-08-22 Jochen Wiedmann <[email protected]> (1.2203)
* dbd/dbd.xs.in: Fixed a memory leak in $dbh->quote().
Arun Bhalla <[email protected]>
1999-07-22 Jochen Wiedmann <[email protected]> (1.2202)
* dbd/dbd.pm.in: The hint for experimental software is now
enabled or disabled automatically, thanks to ExtUtils::PerlPP.
* dbd/dbdimp.c: Changed fprintf to PerlIO_printf, required by
DBI 1.14.
* nodbd/nodbd.pm.in (quote): Changed ~DBD_DRIVER~ to
~~dbd_driver~~, thanks to Maurice Aubrey <[email protected]>.
1999-07-08 Jochen Wiedmann <[email protected]> (1.2201)
* lib/DBD/mSQL/Install.pm (Initialize): Fixed an ugly bug, that
caused unusable Config.pm files.
1999-03-09 Jochen Wiedmann <[email protected]>
* lib/DBD/mysql/Install.pm (CheckForLibGcc): No longer linking
against libgcc.a with OpenBSD.
* nodbd/nodbd.pm.in (selectdb): Calling selectdb twice triggered
a warning. (Nick Hibma <[email protected]>)
* dbd/dbdimp.c: Date and time types now have literal_prefix and
suffix set to "'".
1999-01-25 Jochen Wiedmann <[email protected]> (1.21_15)
* dbd/myMsql.h: mSQL 2.0.6 requires including common/
portability.h.
* dbd/dbdimp.c: Fixed some instances of ~var~ to ~~var~~.
* Makefile.PL: Added PREREQ_PM to WriteMakefile options.
* Renamed Bundle::M(y)sql to Bundle::DBD::mysql and
Bundle::DBD::mSQL.
1999-01-05 Jochen Wiedmann <[email protected]> (1.21_13)
* nodbd/nodbd.pm.in (query): Now setting $db_errstr
(Andreas König, [email protected]).
* dbd/dbdimp.c (dbd_db_quote): Giving up to use "NULL" as a
static string. :-( My thanks to David Foo ([email protected])
and Christian Schwarz ([email protected]) for convincing
me.
* nodbd/nodbd.pm.in (listdbs): Now setting $db_errstr.
1998-12-30 Jochen Wiedmann <[email protected]> (1.21_12)
* dbd/dbd.pm.in (prepare): Fixed missing attribs argument.
Thanks to Peter Ludemann ([email protected]).
* dbd/dbdimp.c: Portability fixes for Perl 5.005_54.
1998-12-29 Jochen Wiedmann <[email protected]> (1.21_11)
* Makefile.PL: .pm files are no longer removed, because
they are missing in MANIFEST otherwise.
1998-12-22 Jochen Wiedmann <[email protected]> (1.21_09)
* INSTALL: Updated the WIN32 INSTALLATION section.
* nodbd/statement.pm.in (fetchrow): Enhanced compatibility to
previous Msql versions by returning the first column now in
scalar context. (Andreas König, [email protected])
* Makefile.PL (Init): Default of installing Msql, Mysql and Msql1
is now "no", unless you already have the Mysql emulation layer
installed.
* Makefile.PL: Added --config option.
1998-11-20 Jochen Wiedmann <[email protected]> (1.21_08)
* lib/DBD/mysql/Install.pm (Initialize): Added -lc on Unixware;
thanks to Orion Poplawski <[email protected]>.
* lib/DBD/mysql/Install.pm (Initialize): Added -lzlib on Win32.
* dbd/dbd.pm.in (connect): Added $dbh->{'Name'}.
* t/dbdadmin.t: Forgot to change _DropDB to func("dropdb",
..., "admin). My thanks to [email protected].
* Some patches for compatibility with ActiveState Perl.
1998-11-08 Jochen Wiedmann <[email protected]> (1.21_07)
* _ListTables is now obsolete.
* _InsertID, affected_rows, IS_PRI_KEY, is_pri_key, IS_NOT_NULL,
is_not_null, IS_KEY, is_key, IS_BLOB, is_blob, IS_NUM, is_num,
LENGTH, length, MAXLENGTH, maxlength, NUMROWS, NUMFIELDS,
RESULT, result, TABLE, table, format_max_size, format_default_size
and format_type_name are now deprecated.
* _CreateDB, _DropDB, _ListFields, _ListSelectedFields and
_NumRows have been removed.
* dbd/dbd.xs.in: $dbh->func('_ListDBs') was closing the socket.
Thanks to Lars Kellogg-Stedman <[email protected]>.
* dbd/dbd.pm.in: $drh->func('_ListDBs' was documented wrong.
Thanks to Lars Kellogg-Stedman <[email protected]>.
1998-11-06 Jochen Wiedmann <[email protected]> (1.21_06)
* dbd/dbdimp.c: Changed isspace(c) to c == ' ' in ChopBlanks
handling.
* dbd/dbdimp.c: Added $dbh->{'mysql_read_default_file'} and
$dbh->{'mysql_read_default_group'}.
* dbd/dbdimp.c: Added $dbh->{'mysql_insertid'}.
1998-10-23 Jochen Wiedmann <[email protected]> (1.21_05)
* dbd/dbd.xs.in: Fixed bug in $dbh->quote($n, SQL_INTEGER).
* Makefile.PL (CheckForLibGcc()): Disabled linking against
libgcc.a under NetBSD. (Curt Sampson, [email protected])
* Forgot to remove the warning for experimental software.
* Added Monty's patches for use of mysqlclients.
* dbd/dbdimp.c: Added msql_configfile.
* Makefile.PL: Added option -static.
1998-10-06 Jochen Wiedmann <[email protected]> (1.21_04)
* INSTALL: Added hints for Win32 installation.
* lib/DBD/mysql/Install.pm: Added portability fixes for Win32
installation with MyODBC. This is now the recommended way of
installing DBD::mysql under Win32.
1998-09-27 Jochen Wiedmann <[email protected]> (1.21_02)
* INSTALL: Added a hint for Remote_Access in msql.conf
* nodbd/nodbd.pm.in (quote): Made quote a class method; Andreas
König <[email protected]>.
* dbd/myMsql.h (MyReconnect): Fixed $dbh->ping() for MySQL.
My thanks to Nikki Chumakov ([email protected]).
* dbd/dbimon.in: Added dump mode.
* dbd/dbimon.in: TableList now based on $dbh->tables(), thus
portable.
* dbd/dbimon.in: Shell completion with TableList case independent.
* tests/60leaks.t: No longer calling exit() within BEGIN.
(Workaround for a bug within Perl 5.00404)
* tests/ak-dbd.t: Removed "local $sth->{PrintError} = 0"; yet
another workaround.
1998-07-28 Jochen Wiedmann <[email protected]> (1.21_00)
* INSTALL: Added a description of the missing-libgcc problem.
* INSTALL: Added a patch for the mSQL problem with ORDER BY.
* dbd/dbd.pm.in: Added a description of mSQL's problem with
ORDER BY.
* Fixed pointers to DBI home (was www.hermetica.com, now
www.arcana.co.uk)
* lib/DBD/mysql/Install.pm (Initialize): Added
$ENV{'MYSQL_HEADERDIR'} and $ENV{'MYSQL_LIBDIR'}.
* dbd/dbdimp.c: mysql_fetch_lengths() returns longs under
MySQL 3.22.04
* nodbd/nodbd.pm.in (errno): Fixed missing definition of
$self.
* Makefile.PL (InitializeMysql): Looking for libmysqlclient.a
and libmysqlclient.so now.
* dbd/dbdimp.c (dbd_st_internal_execute): Fixed memory leak,
*cdaPtr was not checked for <> NULL. My thanks to Marc
Lehmann <[email protected]> for the report.
* dbd/dbd.pm.in: Added table_info().
1998-07-16 Jochen Wiedmann <[email protected]> (1.19_22)
* dbd/dbdimp.c: Added dTHR to some more functions for 5.005
compatibility. Thanks to Chris Leach
* nodbd/statement.pm.in: Changed length to CORE::length in
some cases to prevent 5.005 warnings.
* Added a section on multithrading to the manual.
1998-07-07 Jochen Wiedmann <[email protected]> (1.19_21)
* nodbd/nodbd.pm.in (query): Fixed a missing "bless($sth, ...)".
My thanks to Ray Zimmermann <[email protected]>. (Gives me
a familiar feeling to always meet the same people ... :-)
1998-07-06 Jochen Wiedmann <[email protected]> (1.19_20)
* Makefile.lib (InitializeMsql): Added /usr to the search path
for mSQL headers and libraries.
* tests/msql1.t (unctrl): Renamed "character" column to
"chrctr". ("character" is not a valid column name under
msql-2.0.4.1)
* dbd/dbd.xs.in (DBD::mysql::ping): Now using mysql_ping().
* dbd/dbdimp.c (_MyLogin): Added mysql_compression.
1998-06-25 Jochen Wiedmann <[email protected]> (1.19_19)
* dbd/dbdimp.c: Added $sth->{mysql_type} and
$sth->{msql_type}, which are in fact just what
$sth->{TYPE} used to be. $sth->{TYPE} is now
returning portable SQL types.
* MANIFEST: Removed nodbd/Makefile.PL.in.
* Makefile.PL: Made test databases configurable.
1998-06-14 Jochen Wiedmann <[email protected]> (1.19_18)
* Makefile.PL: dbdadmin.t was missing in the list of tests
* nodbd/nodbd.pm.in (query): Now really returning undef in
case of errors. (Possible Perl bug?)
* Makefile.PL: Fixed realclean attribute of WriteMakefile.
* Makefile.PL (Init): Setting $Data::Dumper::Indent to 1.
* Makefile.PL (InitializeMsql): Fixed query for mSQL, if
only one version gets installed.
* dbd/dbdimp.c: Now calling mysql_init before mysql_connect.
* dbd/dbdimp.c: For whatever reason, MyGetProtoInfo was
treated like returning a char* under Mysql.
1998-05-16 Jochen Wiedmann <[email protected]> (1.19_17)
* Makefile.PL: Fixed typo in InitializeMsql (dbiDriver = mSQL1).
* dbd/dbdimp.c: mysql_real_connect is now using a dbname
argument
1998-05-07 Jochen Wiedmann <[email protected]> (1.19_16)
* dbd/dbdimp.c: ChopBlanks no longer chops from the left side.
* dbd/dbdimp.c: Fixed memory leak in dbd_st_FETCH_internal.
1998-04-13 Jochen Wiedmann <[email protected]> (1.19_15)
* Added the DBD::mSQL1 and Msql1 drivers.
* Fixed minor icompatibilities with perl 5.005.
* nodbd/nodbd.pm.in (errmsg): Msql->errmsg() should
now recognize error messages in $DBI::errstr (hopefully ...)
1998-04-03 Jochen Wiedmann <[email protected]> (1.19_13)
* dbd/dbdimp.c: msqlGetProtoInfo returns an int, not a
char* (Erik Bertelsen, [email protected])
* dbd/dbdimp.c: Fixed typo in _MyLogin: User was set to
NULL when password had zero length. (Erik Bertelsen,
* dbd/dbdimp.c: One more time fixing reconnect problems with Mysql
and old client libraries (without mysql_real_connect it's just too
ugly! :-(
1998-03-15 Jochen Wiedmann <[email protected]> (1.19_11)
* Makefile.PL: Fixed Bugs in _OdbcParse and version numbers.
* dbd/dbimon.in: Fixed bugs in export mode (Nem W. Schlecht
1998-02-26 Jochen Wiedmann <[email protected]> (1.19_10)
* M(y)sqlPerl now emulated by DBI drivers.
* dbd/dbdimp.c: Added $dbh->{'info'} and $dbh->{'thread_id'}
(mysql only)
* dbd/dbimon.in: Fixed minor bug in "rel db test"
* dbd/dbimon.in (Connect): Added noecho mode for entering
passwords.
* dbd/myMsql.c: Fixed bugs in OdbcParse.
1998-02-06 Jochen Wiedmann <[email protected]> (1.19_03)
* dbd/dbd.xs.in: Fixed $dbh->quote(undef) to return "NULL"
and not 'undef'.
* Requires DBI 0.93. (I assume it still works with 0.91, but
whoever reinstalls Msql-Mysql-modules can well reinstall
DBI.)
* dbd/dbdimp.c: $sth->fetch* now inactivates the sth in case
of errors or no more data; this follows the specification of
the 'Active' attribute.
* Added a missing DROP TABLE in ak-dbd.t.
* Added ODBC style DSN's like DBI:mysql:database=test;host=localhost.
1998-01-20 Jochen Wiedmann <[email protected]> (1.19_02)
* dbd/dbd.xs.in (quote): Fixed "int len" to "STRLEN len"; the
Irix compiler refuses to compile this. (A little bit picky,
a warning would really be sufficient here ...) My thanks to
Simon Matthews <[email protected]>.
* Added "LISTINDEX" handling.
* Makefile.lib: Now always linking against libgcc.a when using gcc
and compiling for MySQL.
* tests/mysql.dbtest: Now using "IS NULL" in SQL queries instead
of "= NULL". (Required as of mysql 3.21.22)