-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathChangeLog
More file actions
1548 lines (899 loc) · 38.7 KB
/
ChangeLog
File metadata and controls
1548 lines (899 loc) · 38.7 KB
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
2011-12-07 Robert Boehne <rboehne@users.sourceforge.net>
* setup.py, Sybase.py, sybasect.c, doc/sybase.tex:
Changing release to 0.40pre2
* dist/release-0.40pre2: New file for 0.40pre2 release.
2011-05-05 Robert Boehne <rboehne@users.sourceforge.net>
* setup.py: Handle the path change for sybase when building
a 64-bit version.
2010-12-13 Robert Boehne <rboehne@users.sourceforge.net>
* setup.py, Sybase.py, sybasect.c, doc/sybase.tex:
Changing release to 0.40pre1
* dist/release-0.40pre1: New file for 0.40pre1 release.
2010-12-13 Robert Boehne <rboehne@users.sourceforge.net>
* Sybase.py: Modify the DateTimeAsPython output conversion to
return None when NULL is output.
2010-12-09 Robert Boehne <rboehne@users.sourceforge.net>
* Sybase.py: Use only spaces for indentation.
2010-09-29 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: support for Python without threads
2010-04-20 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Ignore additional non-errors (1918 and 11932)
* Sybase.py: Use outputmap in bulkcopy mode (thanks to patch by
Cyrille Froehlich)
2009-06-04 Sébastien Sablé <sable@users.sourceforge.net>
* Raise exception when opening a cursor on a closed connection
* tests/sybase_dbapi20.py: Added unitary test for bug 1768959 -
executing a stored procedure
* tests/sybase_dbapi20.py: Added unitary test for bug 1768935
* datafmt.c (money_datafmt): Corrected money type when using
CS_MONEY4 (close bug 2615821)
2009-03-06 Sébastien Sablé <sable@users.sourceforge.net>
* setup.py: Improved libraries detection for 64bits platforms
2008-10-15 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Start using logging module
2008-09-26 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Corrected invalid row count in fetchmany
2008-07-21 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Simplified _fetch_rows
2008-07-04 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Added new exception DeadLockError when Sybase is in a
deadlock situation
2008-06-27 Sébastien Sablé <sable@users.sourceforge.net>
* cmd.c: Corrected thread locking in ct_cmd_props (thanks to patch
by Cyrille Froehlich)
2008-06-23 Sébastien Sablé <sable@users.sourceforge.net>
* Add command properties CS_STICKY_BINDS and CS_HAVE_BINDS
2008-06-19 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Added revision with svn keyword substitution
2008-06-18 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py (Bulkcopy): Added support for inputmap in bulkcopy
* Sybase.py (Cursor.callproc): Corrected bug in type mapping in
callproc (thanks to report by Skip Montanaro)
2008-06-17 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Optimization: reuse command and cursor when calling
cursor.execute with same request
* Sybase.py: Use ct_setparam to define ct_cursor parameters types
instead of ct_param
* Sybase.py: Use CS_DATETIME_TYPE when passing CS_DATE_TYPE to
ct_setparam with NULLDATA to avoid a sybase limitation
* cmd.c: Adding ct_cmd_props wrapper
* Adding implicit conversion for CS_DATE_TYPE in CS_DATETIME_TYPE DataBuf
* sybasect.c: Adding CS_HAVE_CUROPEN property
* cmd.c: Correct passing CS_NULLDATA to ct_setparam
* databuf.c: Correct passing None in a DataBuf (thanks to patch by
Bram Kuijvenhoven)
2008-06-12 Sébastien Sablé <sable@users.sourceforge.net>
* Increase DataBuf maxlength for params of a request when using
CS_CHAR_TYPE params so that the buf can be reused
2008-04-14 Sébastien Sablé <sable@users.sourceforge.net>
* Support for extra paramstyle 'numeric'
* Releasing version 0.39
2008-02-14 Sébastien Sablé <sable@users.sourceforge.net>
* Corrected "undefined symbol" date_datafmt for Sybase versions
where CS_DATE_TYPE is not defined (as reported by Alexey Morsov)
2008-02-12 Sébastien Sablé <sable@users.sourceforge.net>
* Releasing version 0.39pre1
2008-01-18 Sébastien Sablé <sable@users.sourceforge.net>
* setup.py: Better detection of Sybase libraries
* Sybase.py: Better thread safety
2008-01-04 Sébastien Sablé <sable@users.sourceforge.net>
* setup.py: the C API to datetime only exists since python 2.4 - disable datetime with previous versions
2007-10-19 Sébastien Sablé <sable@users.sourceforge.net>
* Corrected python long handling (using CS_NUMERIC instead of CS_LONG which is unspecified)
2007-10-18 Sébastien Sablé <sable@users.sourceforge.net>
* numeric.c: Handle engineer notation of numbers in numeric
2007-10-15 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Added destructor to Cursor
* Sybase.py: backward compatibility - restored deprecated
use_datetime attribut
* setup.py: Sybase libraries do not have "_r64" at the end on OSF1
* Use setuptools and distribute ez_setup.py
2007-10-08 Sébastien Sablé <sable@users.sourceforge.net>
* Restored datetime kwarg for backward compatibility
2007-09-28 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Corrected bug on ct_cursor with parameters
2007-09-27 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Completed input type mapping
2007-09-20 Sébastien Sablé <sable@users.sourceforge.net>
* Corrected various compilation warnings (some linked to python
2.5)
* Sybase.py: Added a prepare method to Cursor
2007-09-19 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Refactoring _cancel_cmd
* Sybase.py: Corrected nextset after refactoring
2007-09-18 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Corrected callproc after refactoring
2007-09-14 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Corrected CS_CURSOR_CLOSE acts as ct_cancel on a
ct_cursor
* Sybase.py: Add type mapping as proposed in
http://www.uniqsys.com/~carsten/typemap.html by Carsten Haese
* sybasect.c: Expose sybase date type functions
2007-08-28 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Refactoring - merged Fetchers, CTCursor and CmdCursor
in Cursor
2007-08-08 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py, doc/dbapi.tex: Additional 'locale' argument to
connect and Connection to set the locale of the connection thanks
to patch by Harri Pasanen
* Sybase.py: Corrected syntax specific to python 2.5
* setup.py: Using setuptools
2007-08-06 Sébastien Sablé <sable@users.sourceforge.net>
* Added support for python Decimal objects in databuf
* Sybase.py: Using ct_cursor for select requests
2007-07-30 Sébastien Sablé <sable@users.sourceforge.net>
* doc/ctxobj.tex, doc/localeobj.tex: Corrected documentation about
CS_CONTEXT Objects thanks to bug report by Derek Harland (close
tracker 1748109)
* Sybase.py: Corrected bug in close() if connection killed from
outside thanks to patch by Derek Harland (close tracker 1746220)
* Sybase.py: Corrected bug if inherit from Sybase.Connection
thanks to patch by Derek Harland (close tracker 1719789)
* Sybase.py: Optimization in fetchall - using fetchmany instead of
fetchone to avoid locking time penalty, thanks to patch by Derek
Harland (close tracker 1746908)
* freetds.h, setup.py: Corrections to compile with bcp-support
against freetds thanks to patch by Klaus-Martin Hansche (close
tracker 1724088)
* MANIFEST.in: Added test suites to distribution
2007-07-23 Sébastien Sablé <sable@users.sourceforge.net>
* Better compliance with DBAPI: returns None in nextset when no
more set
2007-05-22 Sébastien Sablé <sable@users.sourceforge.net>
* Add metadata for pypi
2007-05-15 Sébastien Sablé <sable@users.sourceforge.net>
* doc/installation.tex: Corrected documentation to compile with
FreeTDS and Threads thanks to Derek Harland (close tracker
1709043)
2007-02-28 Sébastien Sablé <sable@users.sourceforge.net>
* Added conversion from string to int when assigning to a
CS_INT_TYPE DataBuf
* Simplified API for CS_DATE_TYPE related functions
* databuf.c: Corrected bug in databuf_alloc: Sybase reports the
wrong maxlength for numeric type - verified with Sybase 12.5 -
thanks to patch provided by Phil Porter
2007-02-26 Sébastien Sablé <sable@users.sourceforge.net>
* Added support for CS_DATE_TYPE
2007-05-03 Sébastien Sablé <sable@users.sourceforge.net>
* Releasing version 0.38
2007-02-02 Sébastien Sablé <sable@users.sourceforge.net>
* Releasing version 0.38pre2
* Sybase.py: Add structured error information to
Sybase.DatabaseError thanks to patch provided by Gregory Bond
(close tracker 1631902)
* Resurrected Sybase.Bulkcopy functionality thanks to patch
provided by Gregory Bond (close tracker 1632916)
2007-01-29 Sébastien Sablé <sable@users.sourceforge.net>
* Corrected AttributeError when locking is off (close tracker
1637942 reported by Jim Nusbaum)
2007-01-15 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Corrected incorrect type mx.DateTime.DateTime
returned by Sybase.Date() in "mx" datetime mode. This type is not
supported by DataBuf.
2007-01-11 Sébastien Sablé <sable@users.sourceforge.net>
* blk.c: Corrected crash on a BLK object when debug is enabled
(close tracker 1630941 reported by Gregory Bond)
2007-01-02 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: rowcount is now propagated to Cursor (corrects
tracker 1621003)
* databuf.c, setup.py, sybasect.h, sybasect.c,
tests/sybase_dbapi20.py: Added support for python datetime type in
DataBuf and as parameter of Cursor.execute()
2006-12-18 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Corrected Date, Time and Timestamp functions when
using mx.DateTime or native python datetime types
* Sybase.py: Corrected DATETIME as cursor.description still
returns native Sybase datetime types
2006-12-14 Sébastien Sablé <sable@users.sourceforge.net>
* blk.c: Corrected blk_describe always returns (status, None)
thanks to patch by Phil Porter
2006-12-13 Sébastien Sablé <sable@users.sourceforge.net>
* databuf.c, datafmt.c: Patch to handle CS_LONG type based on
patch by Paul Rensing
2006-12-08 Sébastien Sablé <sable@users.sourceforge.net>
* setup.py, Sybase.py: Changing to release 0.38pre1
* Sybase.py: Adding support for python native datetime type for
dates - there is a new "datetime" argument to connect in order to
choose the datetime type
* setup.py: Corrected compilation in 64 bits mode based on a patch
by Harri Pasanen
* setup.py: Corrected linking with Sybase 15.0
2006-12-07 Sébastien Sablé <sable@users.sourceforge.net>
* Sybase.py: Factored out Cursor._checkready() - patch provided by
Greg Ward
* Sybase.py: Corrected tests test_description and test_rowcount -
"This routine cannot be called because another command structure
has results pending." when manually commiting after a select
without fetching
* Sybase.py: Corrected test test_ExceptionsAsConnectionAttributes
- Added Exceptions as attributes of Connection based on patch by
Greg Ward
* Sybase.py: Corrected test test_non_existing_proc - Raising
StoredProcedureError when calling a non-existing stored procedure
* Sybase.py: Corrected test test_duplicate_error - Raising
IntegrityError exception when trying to insert a duplicate value
* Sybase.py: Corrected tests test_bug_result_pending3_fetchall,
test_fetchall and test_fetchmany - "This routine cannot be called
because another command structure has results pending." when
manually commiting after a fetchall()
* Sybase.py: Corrected tests test_bug_result_pending and
test_bug_result_pending2 - "This routine cannot be called because
another command structure has results pending." when calling
execute on a cursor after a request has failed
* cmd.c: Corrected core dump in ct_param when in debug mode
* blk.c, cmd.c, conn.c, ctx.c, databuf.c, datafmt.c, datetime.c,
iodesc.c, locale.c, money.c, msgs.c, numeric.c: Applied patch from
Gregory Bond so that python-sybase works with python 2.5
* setup.py, tests/sybase_dbapi20.py, tests/test_sybase_dbapi20.py:
Added python-sybase specific tests to dbapi20 and a test runner
for python-sybase with and without auto_commit
* tests/dbapi20.py: Extended dbapi20 driver compliance unit test
suite in order to permit testing drivers without auto-commit
* tests/dbapi20.py: Added Python DB API 2.0 Anal Compliance Unit
Test 1.10
2005-04-07 08:46 djc
* Sybase.py, setup.py, sybasect.c, dist/release-0.37,
doc/sybase.tex: Bump release to 0.37.
2005-03-21 16:18 djc
* ChangeLog, Sybase.py, setup.py, sybasect.c,
dist/release-0.37pre3, doc/sybase.tex: Yet another attempt to get
a new release out.
2005-03-21 16:13 djc
* cmd.c, freetds.h, sybasect.h: Fix compilation and remove warnings
for FreeTDS.
2005-03-21 10:17 djc
* .cvsignore: Ignore some files.
2005-03-21 10:03 djc
* ChangeLog: Updated for new release.
2005-03-21 10:02 djc
* doc/.cvsignore: Inore documentation temporary files.
2005-03-21 10:02 djc
* dist/release-0.37pre2: New release.
2005-03-21 09:54 djc
* Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Bump release to
0.37pre2
2005-03-20 14:53 djc
* Sybase.py: Cursor state fix from Skip Montanaro.
2005-03-20 14:52 djc
* ctx.c: Callback declaration fix on Windows from Vadim
Beloborodov.
2005-03-19 14:36 djc
* dist/release-0.37pre1: Added test program for memory leak.
2005-03-19 14:29 djc
* ChangeLog, Sybase.py, setup.py, sybasect.c,
dist/release-0.37pre1, doc/sybase.tex: Ready for 0.37pre1
release.
2005-03-19 12:48 djc
* Sybase.py: Consume the CS_STATUS_RESULT internally and set the
stored procedure return value in the Cursor.return_status member.
Small modification to work around different handling for FreeTDS
output parameters.
2005-03-18 16:14 djc
* Sybase.py: Fix sequence arguments to Cursor.callproc().
2004-11-16 10:57 djc
* setup.py: Attempt to make setup detect OCS automagically.
2004-11-16 10:56 djc
* Sybase.py: Apply output hook patch from Ty Sarna
<tsarna@sarna.org>.
2003-11-25 10:58 djc
* Sybase.py, setup.py: Applied patch from Andre Sedinin to improve
error handling.
2003-04-27 21:54 djc
* ChangeLog: Getting release ready.
2003-04-27 21:52 djc
* dist/release-0.36, examples/rpc.sql: Getting ready for release
0.36
2003-04-27 21:28 djc
* freetds.h: Moving to FreeTDS 0.62
2003-04-27 20:54 djc
* Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Use "fetcher"
classes to retrieve results form the server. Changes from running
Anal Compliance Unit Test.
2003-04-27 11:10 djc
* sybasect.c: Renamed __with_freetds__ to __have_freetds__.
2003-02-24 15:30 djc
* dist/release-0.36pre6: Release announcement.
2003-02-24 15:28 djc
* ChangeLog, Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Bump
release to 0.36pre6
2003-02-24 15:26 djc
* sybasect.c: Fix compilation for non-FreeTDS users.
2003-02-23 17:10 djc
* doc/: Makefile, sybase.tex: Fixing documentation build for
Python-2.2
2003-02-23 17:05 djc
* doc/Makefile: Documentation tools in Python-2.2
2003-02-23 17:01 djc
* dist/release-0.36pre5: Fixed wording.
2003-02-23 16:54 djc
* ChangeLog, dist/release-0.36pre5: Prepare for release.
2003-02-23 16:38 djc
* conn.c: Forgot to self self->conn to NULL during ct_con_drop().
2003-02-23 15:49 djc
* Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Added
__have_freetds__ which indicates the FreeTDS version being used.
2003-02-18 22:29 djc
* ctx.c, setup.py: Speeling error.
2003-02-18 22:28 djc
* Sybase.py: Set global ctx as soon as it is created.
2003-02-18 22:23 djc
* setup.py: Try to handle all platforms where SYBASE_OCS might be
defined.
2003-02-18 16:55 djc
* ChangeLog, setup.py: Fix setup.py to allow 0.60 compiles.
2003-02-18 14:48 djc
* doc/: ctxobj.tex, sybase.tex: Added documentation for the
ctx.debug_msg() method.
2003-02-18 14:40 djc
* dist/release-0.36pre4: Added release notice.
2003-02-18 14:34 djc
* Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Bump release to
0.36pre4
2003-02-17 12:15 djc
* Sybase.py, ctx.c, freetds.h: Compile with FreeTDS 0.61 as well as
0.60. Added ctx.debug_msg(). Found and fixed locking bug.
2003-02-12 11:49 djc
* setup.py: AIX libraries from Dietmar Rothkamp.
2003-02-12 10:59 djc
* Sybase.py: Limit the size of text fields.
2003-01-23 21:18 djc
* dist/release-0.36pre3: Forgot one change.
2003-01-23 21:11 djc
* ChangeLog: Ready for release.
2003-01-23 21:11 djc
* Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Bump release.
2003-01-23 21:08 djc
* dist/release-0.36pre3: Added announcement.
2002-12-24 14:23 djc
* databuf.c, datafmt.c: Yet another thing buggered up by FreeTDS.
Force size of numeric columns to be sizeof(CS_NUMERIC) and ignore
what FreeTDS claims they should be.
2002-11-30 09:40 djc
* freetds.h: Getting ready for next release of FreeTDS.
2002-11-27 17:22 djc
* Sybase.py, databuf.c: Better way to handle CS_VARBINARY_TYPE.
2002-11-26 22:57 djc
* Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Bump release to
0.36pre2
2002-11-26 22:53 djc
* Sybase.py, cmd.c, databuf.c: Bind VARBINARY columns to CHAR.
2002-11-23 00:06 djc
* Sybase.py, setup.py, sybasect.c, doc/sybase.tex: Bump release to
0.36pre1.
2002-11-23 00:02 djc
* setup.py: Reverse meaningless change.
2002-11-21 17:05 djc
* Sybase.py, databuf.c, datafmt.c, freetds.h, iodesc.c, msgs.c,
setup.py: Fixed string fields in Sybase CT library member
descriptions.
2002-11-20 12:13 djc
* Sybase.py, setup.py, sybasect.c, dist/release-0.35,
doc/sybase.tex: Renaming 0.35pre3 to 0.35.
2002-10-29 10:31 djc
* ChangeLog: Prepare for release.
2002-10-29 10:31 djc
* ChangeLog, MANIFEST.in, Sybase.py, setup.py,
dist/release-0.35pre3, doc/sybase.tex: Oops - forgot to distribute
freetds.h and sybasect.h
2002-10-28 22:35 djc
* dist/release-0.35pre2: More cleanup.
2002-10-28 22:34 djc
* dist/release-0.35pre2: Fix download URL.
2002-10-28 22:33 djc
* dist/release-0.35pre2: Removed warning about segfaults.
2002-10-28 22:25 djc
* dist/release-0.35pre2: Post to FreeTDS mailing list too.
2002-10-28 21:55 djc
* doc/dbapi.tex: Forgot to document locking argument to connect().
2002-10-28 21:47 djc
* setup.py: Package name should be sybase not Sybase.
2002-10-28 21:13 djc
* ChangeLog, dist/release-0.35pre2: Ready for 0.35pre2 release.
2002-10-28 20:56 djc
* ChangeLog, setup.py, doc/sybase.tex: Added ChangeLog and bumped
revisions.
2002-10-28 20:50 djc
* Sybase.py: Optimise fetchmany() - increases speed over fivefold
in some cases.
2002-10-28 16:04 djc
* LICENCE, MANIFEST.in, Sybase.py, blk.c, cmd.c, conn.c, ctx.c,
databuf.c, datafmt.c, datetime.c, freetds.h, iodesc.c, locale.c,
money.c, msgs.c, numeric.c, setup.py, sybasect.c, sybasect.h,
dist/dist-sybase.sh, dist/index.ahtml, dist/make_webpage.py,
doc/pstumble, doc/sybase.tex: Adjust setup.py to use sdist target.
Copy distribution process from Albatross. Copy LICENSE from
Albatross and adjust source code.
2002-09-18 12:15 djc
* datetime.c: Need to have separate str() and repr() else print
does "'11/01/63'"
2002-07-28 15:54 djc
* doc/: installation.tex, sybase.tex: Added link to installation
guide.
2002-04-22 00:28 djc
* doc/: ctxobj.tex, sybase.tex, sybasect.tex: Updated documention
for cs_config() and set_global_ctx().
2002-04-22 00:12 djc
* doc/: installation.tex, sybase.tex: Update FreeTDS documentation.
2002-04-21 16:19 djc
* blk.c: Fixed NULL pointer reference.
2002-04-21 16:05 djc
* examples/: array_bind.py, bulkcopy.py, cursor_sel.py,
cursor_upd.py, diag_example.py, dynamic_cur.py, dynamic_ins.py,
mult_text.py, params.py, rpc.py, timeout.py: Added call to
set_global_ctx()
2002-04-21 16:01 djc
* TODO: Removed item.
2002-04-21 16:00 djc
* Sybase.py: DatabaseError is a slightly more approriate exception.
2002-04-21 15:58 djc
* Sybase.py, blk.c, cmd.c, conn.c, ctx.c, datetime.c, locale.c,
money.c, numeric.c, setup.py, sybasect.c: Completed support for
callback error handling in extension module. Changed Sybase.py to
use callback error handling. Removed superfluous calls to
PyErr_Clear() which was stuffing up exceptions raised in Python
callback handling.
2002-04-18 23:55 djc
* ctx.c, datetime.c, money.c, numeric.c, setup.py, sybasect.c,
sybasect.h: Place construction of the internal context used for
cslib entirely under program control and removed cs_ctx_global().
All internal global context use now checks that a global ctx has
been created and set via set_global_ctx(). More checks placed on
module initialisation. Fixed locking and refcount issues for
cs_config() and cslib callbacks.
2002-04-18 00:15 djc
* TODO, ctx.c, sybasect.c, sybasect.h: Implemented cs_config()
method for ctx.
2002-04-16 23:39 djc
* blk.c, cmd.c, conn.c, ctx.c, locale.c, sybasect.c, sybasect.h:
Change thread locking to allow Python callbacks from inside Sybase
API. This required a complete rethink of the global interpreter
lock management.
2002-04-13 13:17 djc
* setup.py: Added OCS changes on NT from Shai Berger.
2002-04-13 12:58 djc
* setup.py: Fix API detection to match code.
2002-03-23 17:23 djc
* dist/: dist-sybase.sh, index.ahtml, make_webpage.py: Prepare for
automatic distribution.
2002-03-23 17:02 djc
* Sybase.py, setup.py, doc/ctxobj.tex, doc/sybase.tex: Bump release
to 0.34 and document new CS_IFILE.
2002-03-23 16:59 djc
* doc/localeobj.tex: Add documentation for local objects.
2002-03-23 16:55 djc
* ctx.c, sybasect.c: Added CS_IFILE option to ct_options() for Erik
A. Dahl.
2002-03-23 16:54 djc
* sybasect.h: Fix for MS compiler reported by Roberto M Esguerra.
2002-03-23 16:51 djc
* Sybase.py: State machine fix from Phillip J. Eby.
2002-03-10 16:52 djc
* locale.c: Oops - small error getting string settings.
2002-03-10 16:12 djc
* Sybase.py, setup.py, sybasect.c, doc/cmdobj.tex, doc/connobj.tex,
doc/ctxobj.tex, doc/dbapi.tex, doc/installation.tex,
doc/sybase.tex, doc/sybasect.tex: Finish documentation before you
release you twit!
2002-03-10 14:08 djc
* Sybase.py: Fix call to lock _acquire_restore().
2002-02-15 22:40 djc
* blk.c, cmd.c, conn.c, ctx.c, databuf.c, datafmt.c, datetime.c,
iodesc.c, locale.c, money.c, msgs.c, numeric.c, sybasect.c: Fixed
spelling error in legal text.
2002-02-15 21:13 djc
* setup.py: Fix Solaris build - thanks to Kent Polk
2002-02-15 20:58 djc
* Sybase.py, setup.py: Fix threading locking bug in Cursor.__del__.
Bump release to 0.33pre4.
2002-02-14 22:46 djc
* blk.c, conn.c, setup.py, sybasect.c, sybasect.h: Added
WANT_BULKCOPY macro to allow users to compile without bulkcopy
support.
2002-02-14 22:31 djc
* setup.py: More adjustments to library list on Linux.
2002-02-13 00:41 djc
* setup.py: Remove dodgey static link of libcomn.a on Solaris.
Default threading mode is now off. Use build_ext -D WANT_THREADS
target for setup.py. Bump release to 0.33pre3.
2002-02-13 00:39 djc
* conn.c, ctx.c, freetds.h: Initial stubbing implementation of
cs_diag() and ct_diag() to simulate inline error handling for
FreeTDS.
2002-02-13 00:37 djc
* cmd.c, datafmt.c, sybasect.h, blk.c: Added datafmt_debug() which
displays the contents of a CS_DATAFMT in debug messages.
2002-02-13 00:35 djc
* Sybase.py: Change paramstyle to 'named'. Bump version to
.033pre3. Handle binary parameters in dictionaries for
Cursor.execute() and dictionay or sequence for Cursor.callproc().
2002-02-12 22:23 djc
* Sybase.py: Hide some private variables.
2002-02-10 00:28 djc
* Sybase.py, setup.py: Forgot to bump release.
2002-02-10 00:22 djc
* Sybase.py: Fix Cursor.__del__() to correctly unlock when
threading has gone away. Fixed parameter passing in
Cursor.callproc(). Oops - no Cursor._cancel_current() exists.
2002-02-09 22:52 djc
* Sybase.py, setup.py: Enable multi-threaded programming at
threadsafety == 2. Changed paramstyle to 'format'. Back to drawing
board - throw away all dynamic SQL and use same API as original
module (ct_command()). Re-implement exceptions to format string
messages somewhat like ISQL. Threading is on by default in setup.py
--- see WANT_THREADS.
2002-02-09 22:48 djc
* blk.c, cmd.c, conn.c, ctx.c, databuf.c, datafmt.c, iodesc.c,
locale.c, msgs.c, sybasect.c, sybasect.h: All debug messages now
sent via debug_msg() which allows user to supply a Python file
object as the destination of messages. Use set_debug() function in
sybasect module to set file. All sybasect functions and methods
should be fully thread safe now. The ctx.ct_con_alloc() method has
an optional integer argument which when set to 0 disables any
internal locking of connection. Add debug messages now report full
CT lib API signature.
2002-02-09 22:37 djc
* TODO: Removed a few tasks.
2002-01-12 13:07 djc
* databuf.c, freetds.h: More work porting to FreeTDS
2002-01-07 21:04 djc
* blk.c, cmd.c, conn.c, ctx.c, databuf.c, datafmt.c, datetime.c,
iodesc.c, locale.c, money.c, msgs.c, numeric.c, setup.py,
sybasect.c, sybasect.h: Initial work porting to FreeTDS.
2001-11-06 17:56 djc
* Sybase.py, TODO, conn.c, ctx.c, locale.c, setup.py, sybasect.c,
sybasect.h: Added initial support for CS_LOCALE.
2001-10-22 20:49 djc
* sybasect.c: Andres Celerio changes for CS_VOID_TYPE.
2001-09-30 23:44 djc
* Sybase.py: Trap all exceptions in Cursor.__del__().
2001-09-15 16:33 djc
* Sybase.py, doc/sybase.tex: Bump release
2001-09-15 16:24 djc
* blk.c, setup.py: Added automatic detection of API functions.
2001-09-15 13:00 djc
* blk.c, conn.c, ctx.c, sybasect.c: Ensure module compiles with
older versions.
2001-09-04 20:49 djc
* TODO: Reminder
2001-08-03 11:27 djc
* doc/: Makefile, sybase.tex: Bump doc version.
2001-08-03 11:10 djc
* Sybase.py, setup.py: Bump version.
2001-08-03 11:10 djc
* Sybase.py, databuf.c, datetime.c: Tim Docker bug: databuf.c
datetime values in multi item buffers. Tim Docker bug: Sybase.py
initialisation too early Derek Harland bug: datetime attributes are
now readonly. Derek Harland feature: Sybase.py accept mxDateTime
parameters.
2001-07-20 11:32 djc
* TODO: Clarification.
2001-07-20 11:32 djc
* Sybase.py: Derek Harland mxDateTime to datetime conversion.
2001-07-18 16:19 djc
* Sybase.py, databuf.c: Minor bugfix.
2001-07-18 11:54 djc
* doc/sybase.tex: Bump date.
2001-07-18 11:54 djc
* Sybase.py: Small cleanup.
2001-07-18 11:44 djc
* TODO: TODO
2001-07-18 11:43 djc
* README, setup.py: Made setup a bit better.
2001-07-18 11:16 djc
* examples/: README, bulkcopy.py, diag_example.py, mult_text.py:
All examples working.
2001-07-17 23:02 djc
* money.c: Transposed arguments - oops.
2001-07-17 16:43 djc
* databuf.c, numeric.c, sybasect.h: Make DataBuf accepting for
numeric values.
2001-07-17 16:16 djc