File: ChangeLog

package info (click to toggle)
python-mysqldb 1.2.2-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 536 kB
  • ctags: 1,058
  • sloc: ansic: 2,658; python: 2,615; sh: 103; makefile: 60
file content (1485 lines) | stat: -rw-r--r-- 54,263 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
------------------------------------------------------------------------
r481 | adustman | 2007-02-24 22:06:01 -0600 (Sat, 24 Feb 2007) | 2 lines

Small build/packaging fixes. 1.2.2c1.

------------------------------------------------------------------------
r480 | adustman | 2007-02-24 18:16:43 -0600 (Sat, 24 Feb 2007) | 1 line

Use setuptools instead of distutils. Add Python-2.5 support for with statement as described in http://docs.python.org/whatsnew/pep-343.html  *Please test*
------------------------------------------------------------------------
r476 | adustman | 2007-02-11 10:21:25 -0600 (Sun, 11 Feb 2007) | 3 lines

Fix for #1602592. Some Solaris compiler args could have percent signs,
which would break distutils.

------------------------------------------------------------------------
r475 | adustman | 2007-02-11 09:49:53 -0600 (Sun, 11 Feb 2007) | 2 lines

Suggestion from #1655760.

------------------------------------------------------------------------
r473 | adustman | 2007-02-11 01:31:16 -0600 (Sun, 11 Feb 2007) | 2 lines

Missing setup_common too

------------------------------------------------------------------------
r472 | adustman | 2007-02-11 01:27:13 -0600 (Sun, 11 Feb 2007) | 2 lines

Missing setup_posix.py and setup_windows.py.

------------------------------------------------------------------------
r468 | adustman | 2007-02-10 14:09:26 -0600 (Sat, 10 Feb 2007) | 2 lines

Fix for #1655760

------------------------------------------------------------------------
r467 | adustman | 2007-02-10 13:03:18 -0600 (Sat, 10 Feb 2007) | 3 lines

Revert previous reconnect patches and just handle it
with ping([reconnect]).

------------------------------------------------------------------------
r466 | adustman | 2007-02-09 23:37:00 -0600 (Fri, 09 Feb 2007) | 1 line

Fix bug #1567804: Make sure lists are copies/slices and not just the original
------------------------------------------------------------------------
r465 | adustman | 2007-02-09 22:37:15 -0600 (Fri, 09 Feb 2007) | 2 lines

Add connection.autoreconnect() (variant of bug #1574825)

------------------------------------------------------------------------
r464 | adustman | 2007-02-09 22:16:53 -0600 (Fri, 09 Feb 2007) | 3 lines

reconnect option for connect (bug #1550388).
Enjoy your toes while they last.

------------------------------------------------------------------------
r463 | adustman | 2007-02-09 22:06:10 -0600 (Fri, 09 Feb 2007) | 4 lines

Remove test_SET() since it cannot work until
http://bugs.mysql.com/bug.php?id=17758 is fixed
(MySQL-5.1 or 5.2).

------------------------------------------------------------------------
r462 | adustman | 2007-02-09 21:41:19 -0600 (Fri, 09 Feb 2007) | 1 line

Patch #1651584 (florentaide): Fixes Windows build
------------------------------------------------------------------------
r461 | adustman | 2007-01-30 21:55:53 -0600 (Tue, 30 Jan 2007) | 2 lines

Windows build. Completely untested.

------------------------------------------------------------------------
r460 | adustman | 2007-01-29 12:00:35 -0600 (Mon, 29 Jan 2007) | 7 lines

Fix dumb setup typo.

SET columns can not be reliably returned as Python sets
in MySQL<5.1. Fixes bug #1561190. Also see
http://bugs.mysql.com/bug.php?id=17758


------------------------------------------------------------------------
r459 | adustman | 2007-01-03 17:13:58 -0600 (Wed, 03 Jan 2007) | 3 lines

Factor out most of the setup into setup_posix.py.
setup_windows.py is next.

------------------------------------------------------------------------
r458 | adustman | 2006-10-28 09:53:23 -0500 (Sat, 28 Oct 2006) | 3 lines

Cleaner way to handle the compile-time versioning (via distutils
define_macro), from #1586161 (Alexandr Zamaraev).

------------------------------------------------------------------------
r457 | adustman | 2006-10-27 18:33:35 -0500 (Fri, 27 Oct 2006) | 6 lines

Fix for Python 2.5.

Added a unit test for single character columns.

Updated download URL.

------------------------------------------------------------------------
r454 | adustman | 2006-10-13 17:12:34 -0500 (Fri, 13 Oct 2006) | 2 lines

Metadata updates, 1.2.2b2

------------------------------------------------------------------------
r453 | adustman | 2006-08-29 23:04:42 -0500 (Tue, 29 Aug 2006) | 2 lines

Use CP/M-style switch prefixes (/D instead of -D) on Windows.

------------------------------------------------------------------------
r452 | adustman | 2006-08-29 22:01:17 -0500 (Tue, 29 Aug 2006) | 3 lines

Windows MySQL has a different configuration file (config-win.h)
for inexplicable reasons. (Bug 1548032)

------------------------------------------------------------------------
r450 | adustman | 2006-08-27 13:02:48 -0500 (Sun, 27 Aug 2006) | 24 lines

Version 1.2.2b1.

Raise IntegrityError for a couple types of relatively new errors.
(Bug 1327679)

Add BIT column support. (Bug 1468725)

Return BINARY columns as normal strings, not arrays. (Bug 1495765)

Add support for a new VARCHAR type; behaves like other CHAR types.

Defer issuing warnings when using SSCursors. (Bug 1495782)

Do not try to encode query strings unless they are unicode instances.
(Bug 1521274)

Fix problem with callproc() when it is used before execute() (which is
legal). (Bug 1541124)

Fix formatting of datetime.timedelta values. (Bug 1527801)

Fix connect_timeout documentation bug. (Bug 1523883)


------------------------------------------------------------------------
r447 | adustman | 2006-04-08 22:37:18 -0500 (Sat, 08 Apr 2006) | 2 lines

Rename CHANGES to HISTORY

------------------------------------------------------------------------
r446 | adustman | 2006-04-08 22:36:29 -0500 (Sat, 08 Apr 2006) | 2 lines

Fix MANIFEST (well, fixed after the NEXT commit)

------------------------------------------------------------------------
r445 | adustman | 2006-04-08 22:29:59 -0500 (Sat, 08 Apr 2006) | 2 lines

Update CHANGES file

------------------------------------------------------------------------
r444 | adustman | 2006-04-08 22:25:04 -0500 (Sat, 08 Apr 2006) | 2 lines

Bump version. Disable leak checking by default.

------------------------------------------------------------------------
r443 | adustman | 2006-04-08 21:56:39 -0500 (Sat, 08 Apr 2006) | 3 lines

Fallback to non-thread-safe libraries if the thread-safe ones
are unavailable.

------------------------------------------------------------------------
r440 | adustman | 2006-04-05 12:56:36 -0500 (Wed, 05 Apr 2006) | 3 lines

Remove conditionals for registering server_start and server_end.
Not needed since the code itself is conditional on client version.

------------------------------------------------------------------------
r439 | adustman | 2006-04-04 10:04:20 -0500 (Tue, 04 Apr 2006) | 7 lines

raise NotSupportedError instead of non-existent UnsupportedError

connection.set_character_set() now avoids raising an exception
if the current character set is already correct, regardless of
MySQL version.


------------------------------------------------------------------------
r433 | adustman | 2006-04-02 12:45:58 -0500 (Sun, 02 Apr 2006) | 2 lines

1.2.1

------------------------------------------------------------------------
r432 | adustman | 2006-04-02 12:15:48 -0500 (Sun, 02 Apr 2006) | 2 lines

Rename branch

------------------------------------------------------------------------
r423 | adustman | 2006-03-28 06:59:24 -0600 (Tue, 28 Mar 2006) | 2 lines

Fix leak test for subclassing

------------------------------------------------------------------------
r422 | adustman | 2006-03-27 23:03:35 -0600 (Mon, 27 Mar 2006) | 6 lines

Fix some inconsistent spacing.

Try to fix some memory leaks. I think cursors don't leak any more
but I've had no luck with connections. If you close your connections
you should be fine, even if you don't close your cursors.

------------------------------------------------------------------------
r421 | adustman | 2006-03-05 23:33:01 -0600 (Sun, 05 Mar 2006) | 2 lines

Added documentation for sql_mode support.

------------------------------------------------------------------------
r420 | adustman | 2006-03-05 23:28:05 -0600 (Sun, 05 Mar 2006) | 11 lines

Added a bunch of new error codes to MySQLdb.constants.ER (complete for
MySQL-5.0).

Mapped some new error codes to DataError, which has always existed,
but never had anything mapped to it.

Cleaned set_character_set() a bit.

Added new connection option sql_mode and correspond set_sql_mode()
method.

------------------------------------------------------------------------
r418 | adustman | 2006-03-04 22:59:14 -0600 (Sat, 04 Mar 2006) | 13 lines

Bump metadata version.

Clean up setup.cfg so it doesn't break RPM builds on files which
are no longer included.

Add a test case for warnings for column truncation.

Clean up warnings; was working around the introduced bug that
returned (var)char columns with binary collations as array.

Exposed the column flags (values from constants.FLAG) as
description_flags on the cursor.

------------------------------------------------------------------------
r417 | adustman | 2006-03-04 17:27:24 -0600 (Sat, 04 Mar 2006) | 12 lines

Reverted patch #1387290. It caused char/varchar columns with a binary
collation to return array('c', ...), which should only be returned for
actual BLOB columns.

Figured out how to fix loading SET columns. Bug #1214916.

Cleaned up the SET test.

Removed *.html and *.css files from MANIFEST; their presence (or lack
thereof since they are no longer being packaged) caused RPM builds to
fail, and possibly others.

------------------------------------------------------------------------
r415 | adustman | 2006-03-02 22:09:21 -0600 (Thu, 02 Mar 2006) | 10 lines

* Added set_character_set(charset) method to database connections

* Added get_character_set_info() method to database connections

* Added charset option to database connections

* Updated docs, added FAQ

* 1.2.1c6

------------------------------------------------------------------------
r413 | adustman | 2006-03-01 22:19:32 -0600 (Wed, 01 Mar 2006) | 9 lines

* Add metadata.cfg and site.cfg to MANIFEST.in so they get packaged

* Remove version_info from metadata before calling setup() to avoid
  complaints

* Fix cursor.callproc() as good as can be fixed.

* Improve/fix various tests for stored procedures.

------------------------------------------------------------------------
r412 | adustman | 2006-02-28 11:50:22 -0600 (Tue, 28 Feb 2006) | 2 lines

Fix classifiers and package file handling

------------------------------------------------------------------------
r411 | adustman | 2006-02-28 11:36:32 -0600 (Tue, 28 Feb 2006) | 2 lines

Fix distribution naming

------------------------------------------------------------------------
r410 | adustman | 2006-02-28 11:16:50 -0600 (Tue, 28 Feb 2006) | 2 lines

Derive all version information from metadata.cfg

------------------------------------------------------------------------
r409 | adustman | 2006-02-28 10:34:16 -0600 (Tue, 28 Feb 2006) | 2 lines

Fix embedded build

------------------------------------------------------------------------
r408 | adustman | 2006-02-27 22:19:27 -0600 (Mon, 27 Feb 2006) | 6 lines

* Update README

* Completely rewrite setup.py

* Make pytimes the only time implementation, moved into times

------------------------------------------------------------------------
r407 | adustman | 2006-02-27 17:10:38 -0600 (Mon, 27 Feb 2006) | 4 lines

Python Sets (from sets module) as parameters work, but *only* Set
and not ImmutableSet. Still trying to get it to work on BaseSet
so any subclasses will work.

------------------------------------------------------------------------
r406 | adustman | 2006-02-27 12:48:57 -0600 (Mon, 27 Feb 2006) | 3 lines

Fix client_flag fubar and add support for more detailed warning
information available from MySQL-4.1 and newer server.

------------------------------------------------------------------------
r405 | adustman | 2006-02-27 12:39:53 -0600 (Mon, 27 Feb 2006) | 2 lines

Add sets module support and make boolean support non-optional

------------------------------------------------------------------------
r404 | adustman | 2006-02-27 11:19:40 -0600 (Mon, 27 Feb 2006) | 3 lines

Remove sets module in favor of standard sets module (Python-2.3 and
newer)

------------------------------------------------------------------------
r403 | adustman | 2006-02-27 09:45:37 -0600 (Mon, 27 Feb 2006) | 3 lines

Remove FIELD_TYPE.CHAR (deprecated) from STRING set since it conflicts
with FIELD_TYPE.TINY (NUMBER).

------------------------------------------------------------------------
r402 | adustman | 2006-02-26 23:49:26 -0600 (Sun, 26 Feb 2006) | 2 lines

Fix fubared TimeDelta_or_None and Time_or_None

------------------------------------------------------------------------
r401 | adustman | 2006-02-26 23:37:22 -0600 (Sun, 26 Feb 2006) | 2 lines

Remove erroneous insert_id() on cursor reference.

------------------------------------------------------------------------
r400 | adustman | 2006-02-26 23:31:14 -0600 (Sun, 26 Feb 2006) | 2 lines

Translate some additional error codes

------------------------------------------------------------------------
r399 | adustman | 2006-02-26 22:48:02 -0600 (Sun, 26 Feb 2006) | 2 lines

Documentation is good. Correct documentation is better.

------------------------------------------------------------------------
r398 | adustman | 2006-02-26 22:20:48 -0600 (Sun, 26 Feb 2006) | 4 lines

Enable MULTI_STATEMENTS if the client library is 4.1 or newer.

Enable MULTI_RESULTS if the client library is 5.0 or newer.

------------------------------------------------------------------------
r397 | adustman | 2006-02-26 08:50:47 -0600 (Sun, 26 Feb 2006) | 3 lines

Encode queries to connection character set before inserting
parameters. Bug 1438913

------------------------------------------------------------------------
r396 | adustman | 2006-02-24 21:44:32 -0600 (Fri, 24 Feb 2006) | 2 lines

Generic DB-API unit test module

------------------------------------------------------------------------
r395 | adustman | 2006-02-24 21:43:47 -0600 (Fri, 24 Feb 2006) | 2 lines

Add the DB API unit tester for MySQLdb

------------------------------------------------------------------------
r394 | adustman | 2006-02-24 21:31:52 -0600 (Fri, 24 Feb 2006) | 6 lines

* Fix callproc

* Subtle bug: fetchall() could return the entire result set
  over and over again if you called it multiple times (not
  likely)

------------------------------------------------------------------------
r393 | adustman | 2006-02-24 18:56:15 -0600 (Fri, 24 Feb 2006) | 2 lines

Add callproc() support.

------------------------------------------------------------------------
r392 | adustman | 2006-02-24 18:43:09 -0600 (Fri, 24 Feb 2006) | 3 lines

Don't convert binary varchar columns to unicode.
Patch 1387290

------------------------------------------------------------------------
r391 | adustman | 2006-02-24 18:33:17 -0600 (Fri, 24 Feb 2006) | 2 lines

Include my_config.h so that SSL support can be properly detected.

------------------------------------------------------------------------
r387 | adustman | 2006-02-22 20:00:58 -0600 (Wed, 22 Feb 2006) | 2 lines

Apply Gentoo patch for NEWDECIMAL support (MySQL-5.0)

------------------------------------------------------------------------
r386 | adustman | 2005-05-11 21:08:50 -0500 (Wed, 11 May 2005) | 12 lines

Version 1.2.1c3:

* _mysql.c: raise ProgrammingError for certain methods if they
  are used on Result object created with conn.use_result(),
  since they don't make sense.

* setup.py: Reimplement quote stripping around directory names.
  This seems to be a bug in older versions of mysql_config

* cursors.py: If a unicode query string is passed, encode it in
  the connection's character set.

------------------------------------------------------------------------
r385 | adustman | 2005-05-01 13:41:32 -0500 (Sun, 01 May 2005) | 2 lines

Fix Debian information

------------------------------------------------------------------------
r384 | adustman | 2005-04-30 19:09:25 -0500 (Sat, 30 Apr 2005) | 11 lines

* removed directory filtering in setup.py; should no longer be necessary,
  and it seems to cause problems on some platforms or versions of MySQL
  (most likely 3.23's mysql_config)

* removed use of weak references; I don't think they were needed any more,
  and they caused problems in some of the threaded tests.

* applied patch #1188359: If converters are passed in, use a copy().

* Version 1.2.1c2.

------------------------------------------------------------------------
r382 | adustman | 2005-04-10 15:56:55 -0500 (Sun, 10 Apr 2005) | 2 lines

Version 1.2.1c1

------------------------------------------------------------------------
r381 | adustman | 2005-04-10 15:50:29 -0500 (Sun, 10 Apr 2005) | 4 lines

This should fix the problem with Fedora Core noted on bug
#1145226: On library/include paths, remove quotation marks,
if present.

------------------------------------------------------------------------
r380 | adustman | 2005-04-10 15:41:29 -0500 (Sun, 10 Apr 2005) | 3 lines

Apply patch #1179364 for bug #1037468:
DeprecationWarnings for deprecated methods.

------------------------------------------------------------------------
r379 | adustman | 2005-04-02 23:17:34 -0600 (Sat, 02 Apr 2005) | 2 lines

Restore the begin() method, but issue a DeprecationWarning.

------------------------------------------------------------------------
r378 | adustman | 2005-04-02 23:15:51 -0600 (Sat, 02 Apr 2005) | 4 lines

Add iterator protocol to SSCurors.

Issue deprecation warnings for special DictCursor methods.

------------------------------------------------------------------------
r377 | adustman | 2005-04-02 22:23:18 -0600 (Sat, 02 Apr 2005) | 2 lines

Merge in changes from the trunk

------------------------------------------------------------------------
r372 | (no author) | 2005-02-04 11:03:46 -0600 (Fri, 04 Feb 2005) | 1 line

This commit was manufactured by cvs2svn to create branch 'branch-1-2'.
------------------------------------------------------------------------
r371 | adustman | 2005-02-04 11:03:46 -0600 (Fri, 04 Feb 2005) | 2 lines

Fix connection leak

------------------------------------------------------------------------
r369 | adustman | 2005-01-31 22:01:40 -0600 (Mon, 31 Jan 2005) | 4 lines

* Version 1.1.10

* Minor doc updates and setup tweaks.

------------------------------------------------------------------------
r368 | adustman | 2005-01-26 21:05:32 -0600 (Wed, 26 Jan 2005) | 2 lines

Add additional documentation for RPM build.

------------------------------------------------------------------------
r367 | adustman | 2005-01-26 20:41:24 -0600 (Wed, 26 Jan 2005) | 2 lines

Fix RPM build

------------------------------------------------------------------------
r366 | adustman | 2005-01-24 22:45:30 -0600 (Mon, 24 Jan 2005) | 2 lines

Windows fixes

------------------------------------------------------------------------
r365 | adustman | 2005-01-23 00:56:55 -0600 (Sun, 23 Jan 2005) | 4 lines

Made setup.py usable for Windows again. You must set
the mysqlroot environment variable or patch to make
it actually work.

------------------------------------------------------------------------
r364 | adustman | 2005-01-22 23:47:40 -0600 (Sat, 22 Jan 2005) | 2 lines

Bug #770825

------------------------------------------------------------------------
r363 | adustman | 2005-01-22 22:49:04 -0600 (Sat, 22 Jan 2005) | 2 lines

add load_infile option and more doc cleanups

------------------------------------------------------------------------
r361 | adustman | 2005-01-20 21:25:30 -0600 (Thu, 20 Jan 2005) | 2 lines

Documentation updates.

------------------------------------------------------------------------
r360 | adustman | 2005-01-19 22:20:19 -0600 (Wed, 19 Jan 2005) | 10 lines

 * Bump version to 1.1.9

 * Reworked Unicode support; please test

 * Make Binary() create an array('c')

 * Clean up Cursors a bit.

 * Add a TimeDelta factory function, even though not in the API spec.

------------------------------------------------------------------------
r359 | adustman | 2005-01-16 19:51:00 -0600 (Sun, 16 Jan 2005) | 4 lines

 * make sure charset has a default (None)

 * eliminate lambda usage

------------------------------------------------------------------------
r358 | adustman | 2005-01-14 20:16:26 -0600 (Fri, 14 Jan 2005) | 7 lines

Should now auto-detect all build settings for any platform.
win32 now requires win32pipe to build. Build has only been
tested on Linux, but AFAIK, os.popen() works properly on
all other platforms, and certainly must work on anything
remotely POSIX/UNIX-like. I am assuming that it will work
on Mac OS X as well.

------------------------------------------------------------------------
r357 | adustman | 2005-01-12 23:00:29 -0600 (Wed, 12 Jan 2005) | 7 lines


* Overhaul setup.py

* Clean up warnings in _mysql.c when SSL is not available

* Tidy up MANIFEST.in

------------------------------------------------------------------------
r356 | adustman | 2005-01-04 21:44:02 -0600 (Tue, 04 Jan 2005) | 2 lines

Add GEOMETRY (new in MySQL-4.1)

------------------------------------------------------------------------
r352 | adustman | 2004-12-31 18:10:20 -0600 (Fri, 31 Dec 2004) | 2 lines

Fix some formatting problems

------------------------------------------------------------------------
r351 | adustman | 2004-12-31 17:38:21 -0600 (Fri, 31 Dec 2004) | 3 lines

Clean up handling of warnings and make cursor.messages
actually useful for something.

------------------------------------------------------------------------
r350 | adustman | 2004-12-31 16:41:11 -0600 (Fri, 31 Dec 2004) | 2 lines

Version 1.1.8

------------------------------------------------------------------------
r349 | adustman | 2004-12-31 16:36:50 -0600 (Fri, 31 Dec 2004) | 3 lines

Remove old CHANGELOG. Include some test programs, which are
not in CVS.

------------------------------------------------------------------------
r348 | adustman | 2004-12-31 16:34:11 -0600 (Fri, 31 Dec 2004) | 2 lines

Very minor DB-API compliance fixes.

------------------------------------------------------------------------
r347 | adustman | 2004-12-30 19:30:17 -0600 (Thu, 30 Dec 2004) | 3 lines

Add support for warning_count() and constants needed for
issuing multiple statements.

------------------------------------------------------------------------
r346 | adustman | 2004-12-30 16:17:36 -0600 (Thu, 30 Dec 2004) | 2 lines

* add set_server_option() and sqlstate() connection object methods

------------------------------------------------------------------------
r345 | adustman | 2004-12-30 14:59:58 -0600 (Thu, 30 Dec 2004) | 2 lines

*** empty log message ***

------------------------------------------------------------------------
r344 | adustman | 2004-12-30 14:58:48 -0600 (Thu, 30 Dec 2004) | 4 lines

* Add connection.next_result()

* Another fix for bug #1093028

------------------------------------------------------------------------
r343 | adustman | 2004-12-30 13:13:22 -0600 (Thu, 30 Dec 2004) | 4 lines

Convert the new autocommit, commit, and rollback connection methods
into pure C. When using MySQL<4.1, these issue queries. This simplifies
the Python layer a bit.

------------------------------------------------------------------------
r342 | adustman | 2004-12-30 11:50:48 -0600 (Thu, 30 Dec 2004) | 2 lines

Fix bug 1093028

------------------------------------------------------------------------
r341 | adustman | 2004-10-30 22:53:15 -0500 (Sat, 30 Oct 2004) | 2 lines

*** empty log message ***

------------------------------------------------------------------------
r339 | adustman | 2004-10-30 22:49:19 -0500 (Sat, 30 Oct 2004) | 2 lines

Convert to restructured text.

------------------------------------------------------------------------
r338 | adustman | 2004-10-30 21:11:20 -0500 (Sat, 30 Oct 2004) | 2 lines

Version 1.1.7

------------------------------------------------------------------------
r337 | adustman | 2004-10-30 20:55:51 -0500 (Sat, 30 Oct 2004) | 2 lines

Fix bug #1050841

------------------------------------------------------------------------
r336 | adustman | 2004-10-28 20:52:52 -0500 (Thu, 28 Oct 2004) | 2 lines

Add unicode_errors parameter to connect()

------------------------------------------------------------------------
r335 | adustman | 2004-10-28 20:50:34 -0500 (Thu, 28 Oct 2004) | 2 lines

Fix bug #1045512

------------------------------------------------------------------------
r333 | adustman | 2004-09-26 17:22:59 -0500 (Sun, 26 Sep 2004) | 10 lines

 * Fix pytimes.TimeDelta_or_None()

 * Include days with mxdatetime.format_TIME()

 * Return MySQL TIME columns as a time delta

 * Remove old CompatMysqldb module

 * Version 1.1.6

------------------------------------------------------------------------
r327 | adustman | 2004-09-19 16:38:59 -0500 (Sun, 19 Sep 2004) | 2 lines

*** empty log message ***

------------------------------------------------------------------------
r326 | adustman | 2004-09-19 16:38:08 -0500 (Sun, 19 Sep 2004) | 6 lines

 * Removed some old-style Python stuff from setup.py

 * Added a bit of documentation on ssl parameter to Connection

 * Version 1.1.5

------------------------------------------------------------------------
r325 | adustman | 2004-09-19 15:14:31 -0500 (Sun, 19 Sep 2004) | 2 lines

Include new ChangeLog

------------------------------------------------------------------------
r324 | adustman | 2004-09-19 14:56:20 -0500 (Sun, 19 Sep 2004) | 2 lines

Restore missing common on include_dirs

------------------------------------------------------------------------
r322 | adustman | 2004-09-11 02:26:27 -0500 (Sat, 11 Sep 2004) | 2 lines

*** empty log message ***

------------------------------------------------------------------------
r321 | adustman | 2004-09-11 02:25:34 -0500 (Sat, 11 Sep 2004) | 8 lines

Version 1.1.4

 * setup.py: changed include and library path order

 * MySQLdb/connections.py: fix super class reference in autocommit()

 * Tested against MySQL-4.1.4a with InnoDB tables

------------------------------------------------------------------------
r320 | adustman | 2004-09-11 00:57:19 -0500 (Sat, 11 Sep 2004) | 2 lines

Re-fix typo

------------------------------------------------------------------------
r319 | adustman | 2004-09-11 00:29:00 -0500 (Sat, 11 Sep 2004) | 4 lines

Fix _mysql_Execption() typo. Code is only compiled when MySQL-4.1
is in use, and I haven't done any actual testing against 4.1 yet.
Please report any bugs to the SourceForge tracker.

------------------------------------------------------------------------
r318 | adustman | 2004-09-07 20:40:33 -0500 (Tue, 07 Sep 2004) | 2 lines

*** empty log message ***

------------------------------------------------------------------------
r317 | adustman | 2004-09-07 20:39:46 -0500 (Tue, 07 Sep 2004) | 7 lines

Version 1.1.3

 * _mysql.c: restored missing mysql_errno() call (bug #1023466)

 * _mysql.c: Only try to use SSL support if HAVE_OPENSSL is defined.
   Raise NotSupportedError if ssl is requested but not available.

------------------------------------------------------------------------
r315 | adustman | 2004-09-06 16:53:40 -0500 (Mon, 06 Sep 2004) | 21 lines

General cleanups.

 * Turn autocommit off initially

 * Add support for mysql_autocommit, _commit, and _rollback API functions
   (new in MySQL-4.1)

 * Remove Connection.begin(); use SQL BEGIN or START TRANSACTION instead

 * pytimes (standard datetime module) is now the default implementation

 * Detect and handle MySQL-4.1 and newer TIMESTAMP (looks like DATETIME)

 * UnicodeType and ObjectType now always handled (required features)

 * Ditch support for L at the end of long integer

 * Remove z and crypt libs if building for Windows

 * Version 1.1.2

------------------------------------------------------------------------
r307 | adustman | 2004-06-06 22:44:39 -0500 (Sun, 06 Jun 2004) | 2 lines

Bump version. Update README. Convert all classes to new-style.

------------------------------------------------------------------------
r303 | adustman | 2004-05-18 22:54:01 -0500 (Tue, 18 May 2004) | 2 lines

Initial conversion to modern Python.

------------------------------------------------------------------------
r295 | adustman | 2004-02-28 20:28:20 -0600 (Sat, 28 Feb 2004) | 2 lines

Fix bug #897344

------------------------------------------------------------------------
r294 | adustman | 2004-02-28 20:22:59 -0600 (Sat, 28 Feb 2004) | 2 lines

Fix bug #902024

------------------------------------------------------------------------
r292 | adustman | 2003-12-29 19:30:36 -0600 (Mon, 29 Dec 2003) | 17 lines

 * Check for module initialization failure (extremely rare)

 * The MySQL FIELD_TYPE converter can now be a sequence of 2-tuples.
   Item 0 is a bit mask (using FLAG.*) which must be matched. This should
   be an integer. Item 1 is the conversion function. If item 0 is not an
   integer, then this function is considered the default converter for
   this FIELD_TYPE. Note that these tuples are considered when the query
   has been executed and the result is available, so it doesn't add a
   per-row overhead.

 * As a result of the above, BINARY BLOB fields are now returned as
   character arrays using the array.array class. Non-BINARY BLOB fields
   (i.e. TEXT) are returned as strings. If unicode is enabled, they are
   returned as unicode strings.

 * Bump version to 0.9.3b3.

------------------------------------------------------------------------
r291 | adustman | 2003-12-12 22:58:25 -0600 (Fri, 12 Dec 2003) | 4 lines

https://sourceforge.net/tracker/?func=detail&aid=850174&group_id=22307&atid=374932

Use more precision for floats; str(<float>) doesn't return full precision.

------------------------------------------------------------------------
r290 | adustman | 2003-11-27 14:56:40 -0600 (Thu, 27 Nov 2003) | 19 lines

Preliminary SSL support. Adds a ssl parameter to connect().
ssl should be a mapping. These are the recognized keys:

ca*, cert*, capath, key*, cipher

Items marked with * are required. All values must be strings.
They are described here:

http://www.mysql.com/doc/en/SSL_options.html

You're probably better off putting these variables into an
option file and using read_option_file instead.

SSL is supported in MySQL-4.0 and newer. Even if you don't
specify all the required parameters, the connection will probably
succeed, although without SSL.

This is not yet tested in any significant way.

------------------------------------------------------------------------
r288 | adustman | 2003-11-23 16:04:04 -0600 (Sun, 23 Nov 2003) | 2 lines

Version bump

------------------------------------------------------------------------
r287 | adustman | 2003-11-23 16:02:13 -0600 (Sun, 23 Nov 2003) | 9 lines

Time-handling updates. New load order is:

mxdatetime (wrapper around mx.DateTime)
pytimes (wrapper around Python-2.3+ datetime)
stringtimes (minimal string implementation)

The logic is, if you're running Python-2.3 and are have mx.Datetime,
you probably want to use that instead of datetime.

------------------------------------------------------------------------
r286 | adustman | 2003-11-22 13:30:40 -0600 (Sat, 22 Nov 2003) | 2 lines

Bug #816721

------------------------------------------------------------------------
r285 | adustman | 2003-11-22 12:55:13 -0600 (Sat, 22 Nov 2003) | 2 lines

Bug #811636 fix (?)

------------------------------------------------------------------------
r284 | adustman | 2003-09-06 21:51:15 -0500 (Sat, 06 Sep 2003) | 2 lines

info() might return None or empty string

------------------------------------------------------------------------
r283 | adustman | 2003-09-06 21:45:58 -0500 (Sat, 06 Sep 2003) | 3 lines

Don't treat FIELD_TYPE.CHAR as a character type, it's really
a TINYINT (FIELD_TYPE.TINY).

------------------------------------------------------------------------
r282 | adustman | 2003-09-06 21:25:05 -0500 (Sat, 06 Sep 2003) | 2 lines

Bug#778822

------------------------------------------------------------------------
r281 | adustman | 2003-09-06 21:07:16 -0500 (Sat, 06 Sep 2003) | 2 lines

Fix version number correctly

------------------------------------------------------------------------
r280 | adustman | 2003-09-06 21:00:34 -0500 (Sat, 06 Sep 2003) | 2 lines

Version bump

------------------------------------------------------------------------
r279 | adustman | 2003-07-10 19:34:40 -0500 (Thu, 10 Jul 2003) | 2 lines

Include new time handling modules

------------------------------------------------------------------------
r278 | adustman | 2003-07-10 19:13:44 -0500 (Thu, 10 Jul 2003) | 2 lines

Split out old Date/Time handling classes into separate modules

------------------------------------------------------------------------
r277 | adustman | 2003-07-10 19:07:06 -0500 (Thu, 10 Jul 2003) | 2 lines

Finish up TimeDelta_or_None

------------------------------------------------------------------------
r276 | adustman | 2003-07-10 10:58:56 -0500 (Thu, 10 Jul 2003) | 2 lines

Add support for Python 2.3 datetime classes.

------------------------------------------------------------------------
r275 | adustman | 2003-07-08 01:34:27 -0500 (Tue, 08 Jul 2003) | 2 lines

Bump version numbers.

------------------------------------------------------------------------
r274 | adustman | 2003-07-08 01:29:56 -0500 (Tue, 08 Jul 2003) | 3 lines

Bump version and remove some unneccesary casts that seem to
break things when using Python 2.3.

------------------------------------------------------------------------
r273 | adustman | 2003-07-07 16:44:40 -0500 (Mon, 07 Jul 2003) | 2 lines

Fix bug 605849 (I hope).

------------------------------------------------------------------------
r272 | adustman | 2003-07-07 12:49:01 -0500 (Mon, 07 Jul 2003) | 2 lines

Fix member access problems

------------------------------------------------------------------------
r271 | adustman | 2003-04-20 21:50:57 -0500 (Sun, 20 Apr 2003) | 2 lines

Eliminate use of deprecated PyArg_NoArgs()

------------------------------------------------------------------------
r270 | adustman | 2003-04-20 21:23:06 -0500 (Sun, 20 Apr 2003) | 2 lines

Dumb typo

------------------------------------------------------------------------
r269 | adustman | 2003-04-18 23:26:57 -0500 (Fri, 18 Apr 2003) | 2 lines

Build and documentation updates

------------------------------------------------------------------------
r268 | adustman | 2002-08-22 16:12:02 -0500 (Thu, 22 Aug 2002) | 2 lines

Embedded server support

------------------------------------------------------------------------
r267 | adustman | 2002-08-22 10:20:25 -0500 (Thu, 22 Aug 2002) | 3 lines

Clean up compiler warnings about
assignment discards qualifiers from pointer target type

------------------------------------------------------------------------
r266 | adustman | 2002-08-01 23:09:13 -0500 (Thu, 01 Aug 2002) | 2 lines

Windows (blech) compatibility changes. (Gerhard H�ring)

------------------------------------------------------------------------
r264 | adustman | 2002-08-01 00:18:08 -0500 (Thu, 01 Aug 2002) | 2 lines

CHANGELOG

------------------------------------------------------------------------
r263 | adustman | 2002-08-01 00:09:51 -0500 (Thu, 01 Aug 2002) | 2 lines

Not supporting GC for python < 2.2

------------------------------------------------------------------------
r262 | adustman | 2002-07-31 23:49:14 -0500 (Wed, 31 Jul 2002) | 2 lines

Memory API updates

------------------------------------------------------------------------
r261 | adustman | 2002-07-31 23:48:48 -0500 (Wed, 31 Jul 2002) | 2 lines

Ignore exception from close() in __del__

------------------------------------------------------------------------
r260 | adustman | 2002-07-31 23:29:54 -0500 (Wed, 31 Jul 2002) | 2 lines

GC for Python 2.2+

------------------------------------------------------------------------
r259 | adustman | 2002-07-20 23:05:17 -0500 (Sat, 20 Jul 2002) | 2 lines

0.9.2 (finally)

------------------------------------------------------------------------
r258 | adustman | 2002-07-16 11:26:40 -0500 (Tue, 16 Jul 2002) | 2 lines

Revert execute behavior: Do not use % operator when there are no args

------------------------------------------------------------------------
r257 | adustman | 2002-07-10 15:28:03 -0500 (Wed, 10 Jul 2002) | 2 lines

Rewrite

------------------------------------------------------------------------
r256 | adustman | 2002-07-10 14:00:59 -0500 (Wed, 10 Jul 2002) | 2 lines

Packaging cleanups

------------------------------------------------------------------------
r254 | adustman | 2002-07-10 10:18:13 -0500 (Wed, 10 Jul 2002) | 2 lines

Version 0.9.2c3, see CHANGELOG

------------------------------------------------------------------------
r253 | adustman | 2002-07-03 10:49:12 -0500 (Wed, 03 Jul 2002) | 3 lines

Revert returning BLOBs as arrays, since MySQL doesn't distinquish
between TEXT and BLOB types. (Skip Montanaro)

------------------------------------------------------------------------
r252 | adustman | 2002-07-03 09:40:12 -0500 (Wed, 03 Jul 2002) | 2 lines

Passing both conv and unicode to connect was broken (Skip Montanaro)

------------------------------------------------------------------------
r251 | adustman | 2002-07-01 22:55:58 -0500 (Mon, 01 Jul 2002) | 2 lines

FreeBSD/OpenBSD update

------------------------------------------------------------------------
r250 | adustman | 2002-07-01 09:50:24 -0500 (Mon, 01 Jul 2002) | 2 lines

Fix dumb (but working) iterator implementation

------------------------------------------------------------------------
r249 | adustman | 2002-06-30 22:36:17 -0500 (Sun, 30 Jun 2002) | 2 lines

Doc updates

------------------------------------------------------------------------
r248 | adustman | 2002-06-26 00:50:11 -0500 (Wed, 26 Jun 2002) | 2 lines

Add _mysql.thread_safe() (boolean, true if linked with thread-safe lib)

------------------------------------------------------------------------
r246 | adustman | 2002-06-24 13:27:39 -0500 (Mon, 24 Jun 2002) | 2 lines

Smack my version up

------------------------------------------------------------------------
r245 | adustman | 2002-06-23 15:25:55 -0500 (Sun, 23 Jun 2002) | 2 lines

Some errorhandler cleanups

------------------------------------------------------------------------
r243 | adustman | 2002-06-20 18:27:18 -0500 (Thu, 20 Jun 2002) | 2 lines

*** empty log message ***

------------------------------------------------------------------------
r242 | adustman | 2002-06-20 18:17:48 -0500 (Thu, 20 Jun 2002) | 2 lines

Make the new unicode option actually work

------------------------------------------------------------------------
r241 | adustman | 2002-06-20 16:31:27 -0500 (Thu, 20 Jun 2002) | 2 lines

Add nextset() dummy stub

------------------------------------------------------------------------
r240 | adustman | 2002-06-20 16:30:49 -0500 (Thu, 20 Jun 2002) | 2 lines

BLOBs as array support

------------------------------------------------------------------------
r239 | adustman | 2002-06-20 16:27:51 -0500 (Thu, 20 Jun 2002) | 4 lines

More Python 2.2 and doc updates. Return blobs as array.
The unicode option to connect() causes (VAR)CHAR columns
to be returned as unicode stings.

------------------------------------------------------------------------
r238 | adustman | 2002-06-20 16:12:56 -0500 (Thu, 20 Jun 2002) | 2 lines

Lots of Python 2.2 updates, especially documentation

------------------------------------------------------------------------
r237 | adustman | 2002-06-17 20:01:47 -0500 (Mon, 17 Jun 2002) | 2 lines

Mostly documentation updates, and some code cleanups

------------------------------------------------------------------------
r236 | adustman | 2002-06-15 18:38:54 -0500 (Sat, 15 Jun 2002) | 2 lines

Make executemany iterate over queries that don't use multiple VALUES

------------------------------------------------------------------------
r235 | adustman | 2002-04-28 14:55:08 -0500 (Sun, 28 Apr 2002) | 2 lines

packaging changes, pre-emptive version bump

------------------------------------------------------------------------
r233 | adustman | 2002-04-28 14:26:19 -0500 (Sun, 28 Apr 2002) | 2 lines

Bump version

------------------------------------------------------------------------
r232 | adustman | 2002-04-28 14:23:50 -0500 (Sun, 28 Apr 2002) | 4 lines


Errorhandler was broken in cursor
CVSr ----------------------------------------------------------------------

------------------------------------------------------------------------
r231 | adustman | 2002-04-28 14:07:55 -0500 (Sun, 28 Apr 2002) | 2 lines

changelog

------------------------------------------------------------------------
r230 | adustman | 2002-04-28 13:32:06 -0500 (Sun, 28 Apr 2002) | 2 lines

Version bump

------------------------------------------------------------------------
r229 | adustman | 2002-04-28 13:31:46 -0500 (Sun, 28 Apr 2002) | 2 lines

Macro cleanups

------------------------------------------------------------------------
r228 | adustman | 2002-04-26 19:12:57 -0500 (Fri, 26 Apr 2002) | 6 lines

Fix memory leak in _mysql_escape_dict. (Danny Yoo)

SSCursor.fetchall() (_mysql_ResultObject_fetch_row) didn't properly
increase the size of the result tuple if the result set was more than
1000 rows. (Danny Yoo)

------------------------------------------------------------------------
r227 | adustman | 2002-03-19 10:31:23 -0600 (Tue, 19 Mar 2002) | 3 lines

More (de)allocation cleanups, based on suggestions from
python-dev and Skip Montanaro

------------------------------------------------------------------------
r226 | adustman | 2002-03-19 00:16:21 -0600 (Tue, 19 Mar 2002) | 2 lines

Use modern allocation with modern Python

------------------------------------------------------------------------
r224 | adustman | 2002-03-14 14:44:42 -0600 (Thu, 14 Mar 2002) | 2 lines

Elminate debugging statement.

------------------------------------------------------------------------
r223 | adustman | 2002-03-14 14:43:51 -0600 (Thu, 14 Mar 2002) | 2 lines

Bump version. Minor Alpha Linux update. Clear errorhandler on close.

------------------------------------------------------------------------
r220 | adustman | 2002-03-01 16:27:12 -0600 (Fri, 01 Mar 2002) | 2 lines

Fix a memory leak if the connect fails

------------------------------------------------------------------------
r212 | adustman | 2002-01-28 19:21:21 -0600 (Mon, 28 Jan 2002) | 3 lines

Stricter regex for finding INSERT values
([ #505295 ] Wrong regexp in executemany() function.)

------------------------------------------------------------------------
r210 | adustman | 2002-01-25 14:20:42 -0600 (Fri, 25 Jan 2002) | 2 lines

changes

------------------------------------------------------------------------
r209 | adustman | 2002-01-25 14:18:18 -0600 (Fri, 25 Jan 2002) | 2 lines

Verision bump.

------------------------------------------------------------------------
r208 | adustman | 2002-01-25 14:17:03 -0600 (Fri, 25 Jan 2002) | 2 lines

Use modern memory deallocation on modern versions of Python.

------------------------------------------------------------------------
r207 | adustman | 2002-01-25 13:50:35 -0600 (Fri, 25 Jan 2002) | 2 lines

Rework platform config a bit, default to thread-safe client.

------------------------------------------------------------------------
r205 | adustman | 2001-12-28 20:28:18 -0600 (Fri, 28 Dec 2001) | 2 lines

Fix fetchmany().

------------------------------------------------------------------------
r203 | adustman | 2001-12-23 19:26:50 -0600 (Sun, 23 Dec 2001) | 2 lines

Fix version.

------------------------------------------------------------------------
r202 | adustman | 2001-12-23 19:23:55 -0600 (Sun, 23 Dec 2001) | 2 lines

Version 0.9.2a1. Unicode + DB-API extensions.

------------------------------------------------------------------------
r201 | adustman | 2001-12-23 15:39:31 -0600 (Sun, 23 Dec 2001) | 2 lines

0.9.2 alpha 1

------------------------------------------------------------------------
r200 | adustman | 2001-12-23 15:37:33 -0600 (Sun, 23 Dec 2001) | 2 lines

Unicode support.

------------------------------------------------------------------------
r199 | adustman | 2001-12-22 13:25:28 -0600 (Sat, 22 Dec 2001) | 3 lines

str() can fail in some cases, particularly unicode.
Watch for it to prevent core dumps.

------------------------------------------------------------------------
r198 | adustman | 2001-12-03 09:05:39 -0600 (Mon, 03 Dec 2001) | 3 lines

Fix cursor.rownumber for CursorStoreResultMixIn.fetchmany()
and implement cursor.rownumber for CursorUseResultMixIn.fetchXXX().

------------------------------------------------------------------------
r197 | adustman | 2001-11-28 10:42:45 -0600 (Wed, 28 Nov 2001) | 2 lines

Catch more *bsd platforms. (Suggested by Ragnar Beer)

------------------------------------------------------------------------
r196 | adustman | 2001-11-06 21:32:20 -0600 (Tue, 06 Nov 2001) | 4 lines

Simplify the various configurations.

Solaris might be fixed for gcc and broken for standard compiler.

------------------------------------------------------------------------
r195 | adustman | 2001-10-30 22:41:34 -0600 (Tue, 30 Oct 2001) | 2 lines

Some additional Zope notes.

------------------------------------------------------------------------
r194 | adustman | 2001-10-30 22:29:21 -0600 (Tue, 30 Oct 2001) | 2 lines

Mac OS X updates

------------------------------------------------------------------------
r193 | adustman | 2001-10-30 22:25:02 -0600 (Tue, 30 Oct 2001) | 2 lines

Link with -flat_namespace on Mac OS X/darwin. (Dan Grassi)

------------------------------------------------------------------------
r192 | adustman | 2001-10-25 10:06:35 -0500 (Thu, 25 Oct 2001) | 4 lines

Do some renaming suggested by recent DB-SIG discussions.

This should not break anything unless you are using private members.

------------------------------------------------------------------------
r191 | adustman | 2001-10-22 23:54:00 -0500 (Mon, 22 Oct 2001) | 2 lines

netbsd config

------------------------------------------------------------------------
r188 | adustman | 2001-10-16 22:21:22 -0500 (Tue, 16 Oct 2001) | 2 lines

0.9.0 updates

------------------------------------------------------------------------
r187 | adustman | 2001-10-13 09:06:27 -0500 (Sat, 13 Oct 2001) | 2 lines

import Set

------------------------------------------------------------------------
r186 | adustman | 2001-09-29 10:40:27 -0500 (Sat, 29 Sep 2001) | 2 lines

Catch more Linux platforms in the config.

------------------------------------------------------------------------
r185 | adustman | 2001-09-21 08:33:32 -0500 (Fri, 21 Sep 2001) | 2 lines

Solaris config (Bent NAgstrup Terp)

------------------------------------------------------------------------
r183 | adustman | 2001-09-20 12:26:22 -0500 (Thu, 20 Sep 2001) | 2 lines

Good to update this at least once a year.

------------------------------------------------------------------------
r182 | adustman | 2001-09-20 12:15:02 -0500 (Thu, 20 Sep 2001) | 2 lines

Update to 0.9.1c2.

------------------------------------------------------------------------
r181 | adustman | 2001-09-13 07:53:07 -0500 (Thu, 13 Sep 2001) | 2 lines

Fix exception handling in connect() (broken by 0.9.1.c1)

------------------------------------------------------------------------
r180 | adustman | 2001-09-12 12:29:27 -0500 (Wed, 12 Sep 2001) | 2 lines

Added CHANGELOG. (John Bowe)

------------------------------------------------------------------------
r173 | adustman | 2001-09-06 20:24:04 -0500 (Thu, 06 Sep 2001) | 2 lines

OSX config (Paul DuBois); tab/space cleanups; more package info

------------------------------------------------------------------------
r172 | adustman | 2001-09-06 20:12:06 -0500 (Thu, 06 Sep 2001) | 2 lines

Generated by distutils.

------------------------------------------------------------------------
r170 | adustman | 2001-09-06 20:08:17 -0500 (Thu, 06 Sep 2001) | 2 lines

More stuff I forgot about.

------------------------------------------------------------------------
r169 | adustman | 2001-09-06 20:07:01 -0500 (Thu, 06 Sep 2001) | 2 lines

Use two arg _PyTuple_Resize() for Python 2.2 and newer.

------------------------------------------------------------------------
r168 | adustman | 2001-09-06 20:06:08 -0500 (Thu, 06 Sep 2001) | 2 lines

Version 0.9.1c1

------------------------------------------------------------------------
r167 | adustman | 2001-09-06 20:05:50 -0500 (Thu, 06 Sep 2001) | 2 lines

Return DECIMAL/NUMERIC as floating point.

------------------------------------------------------------------------
r166 | adustman | 2001-09-06 18:08:14 -0500 (Thu, 06 Sep 2001) | 2 lines

Added a CHANGELOG, for people who like that sort of thing.

------------------------------------------------------------------------
r165 | adustman | 2001-09-06 01:29:21 -0500 (Thu, 06 Sep 2001) | 7 lines

Kill bastardly refcount bug that occurs starting with Python 2.0.1.
PyArgs_ParseTupleAndKeywords() returns borrowed references for O format
starting in 2.0.1, prior to that it returns new references, so it's
necessary to test the Python version to determine whether or not we
should Py_INCREF() it. If we always Py_INCREF() it, this produces a
memory leak in versions prior to 2.0.1.

------------------------------------------------------------------------
r164 | adustman | 2001-09-05 22:04:26 -0500 (Wed, 05 Sep 2001) | 2 lines

Change version number, back out memory changes.

------------------------------------------------------------------------
r163 | adustman | 2001-09-05 21:02:57 -0500 (Wed, 05 Sep 2001) | 2 lines

Memory allocation cleanups. Add missing newline in docstring.

------------------------------------------------------------------------
r160 | adustman | 2001-07-28 22:08:11 -0500 (Sat, 28 Jul 2001) | 3 lines

ER_PARSE_ERROR -> ProgrammingError;
#ifdef around some recent error types

------------------------------------------------------------------------
r159 | adustman | 2001-07-12 12:10:59 -0500 (Thu, 12 Jul 2001) | 2 lines

Fix leak on converter dictionary. (Ted Wright)

------------------------------------------------------------------------
r158 | adustman | 2001-07-11 13:13:09 -0500 (Wed, 11 Jul 2001) | 2 lines

Minor fixes for 1.0.0.

------------------------------------------------------------------------
r155 | adustman | 2001-06-20 17:48:54 -0500 (Wed, 20 Jun 2001) | 2 lines

Clarify use of host parameter to connect().

------------------------------------------------------------------------
r154 | adustman | 2001-06-20 16:58:59 -0500 (Wed, 20 Jun 2001) | 2 lines

Some corrections courtesy of Paul DuBois.

------------------------------------------------------------------------
r152 | adustman | 2001-06-04 11:55:04 -0500 (Mon, 04 Jun 2001) | 2 lines

Update version number.

------------------------------------------------------------------------
r151 | adustman | 2001-05-28 14:07:07 -0500 (Mon, 28 May 2001) | 2 lines

Ignore stuff.

------------------------------------------------------------------------
r149 | adustman | 2001-05-25 15:40:24 -0500 (Fri, 25 May 2001) | 3 lines

Rip out _mysql.field_*() methods, as MySQL recommends using SQL
instead. See C API docs.

------------------------------------------------------------------------
r148 | adustman | 2001-05-24 13:18:09 -0500 (Thu, 24 May 2001) | 2 lines

Update version.

------------------------------------------------------------------------
r146 | adustman | 2001-05-24 10:27:17 -0500 (Thu, 24 May 2001) | 2 lines

Clean up some import statements, bump versions to 0.9.0c2.

------------------------------------------------------------------------
r144 | adustman | 2001-05-22 22:16:34 -0500 (Tue, 22 May 2001) | 2 lines

Fix the case where there is no mx.DateTime.

------------------------------------------------------------------------
r143 | adustman | 2001-05-22 22:16:12 -0500 (Tue, 22 May 2001) | 2 lines

Remove a debug string.

------------------------------------------------------------------------
r142 | adustman | 2001-05-22 21:12:10 -0500 (Tue, 22 May 2001) | 2 lines

0.9.0c1 minor edit.

------------------------------------------------------------------------
r141 | adustman | 2001-05-14 13:49:27 -0500 (Mon, 14 May 2001) | 2 lines

PyObject_Length() == -1 on error. Thanks, Jon Ribbens.

------------------------------------------------------------------------
r140 | adustman | 2001-05-11 23:30:34 -0500 (Fri, 11 May 2001) | 13 lines

Smash data into two separate modules: sets and times. I never liked
that name anyway.

Set has been extended somewhat. The comparision operators really only
work properly with Python 2.1, due to the limitations of __cmp__.
Set also uses the binary operators (&, |, ^), since these make somewhat
more sense than the arithmetic ones, though there is no good analog for
- (if only there were a nand operator...)

Bump the version to 0.9.0b3. This is not the actual 0.9.0b3 release yet,
however. I want to do some more insanity checking. But almost ready for
some candidate releases.

------------------------------------------------------------------------
r139 | adustman | 2001-05-11 00:07:33 -0500 (Fri, 11 May 2001) | 10 lines

More major code heaving.

All the threading stuff is ripped out and burned.
Too much code for not enough benefit. Still thread-safe,
just don't share connections.

Made a nice Set class for SET columns.

Updated the docs.

------------------------------------------------------------------------
r138 | adustman | 2001-05-10 00:31:50 -0500 (Thu, 10 May 2001) | 2 lines

Revamped docs.

------------------------------------------------------------------------
r131 | adustman | 2001-05-08 21:23:14 -0500 (Tue, 08 May 2001) | 2 lines

Initial revision

------------------------------------------------------------------------