forked from FreeTDS/freetds
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog-2004
2443 lines (1974 loc) · 97.2 KB
/
ChangeLog-2004
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
Sat May 28 12:46:34 CET 2005 Frediano Ziglio <[email protected]>
* include/cspublic.h include/ctpublic.h include/sybdb.h:
- applied modified patch from Christos Zoulas to use
-Wold-style-cast with g++
Thu May 26 17:03:10 CET 2005 Frediano Ziglio <[email protected]>
* TODO doc/userguide.sgml: update for SSL support
Thu May 26 14:45:23 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/net.c: changed ciphers using GnuTLS
Thu May 26 00:55:57 EDT 2005 JK Lowden <[email protected]>
* doc/htdoc/contrib.html doc/htdoc/docs.html doc/htdoc/faq.html
* doc/htdoc/index.html doc/htdoc/news.html doc/htdoc/software.html
* doc/htdoc/support.html doc/htdoc/which_api.html
- cleaned up html, some reformatting.
Wed May 25 12:02:50 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/net.c TODO NEWS:
- fix leak using OpenSSL
- use correct cipher with OpenSSL
Tue May 24 12:53:16 CET 2005 Frediano Ziglio <[email protected]>
* acinclude.m4 configure.in src/tds/login.c src/tds/mem.c:
* src/tds/net.c:
- support OpenSSL for SSL
Mon May 23 10:04:25 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/login.c src/tds/mem.c src/tds/net.c:
- move ssl code in net.c
- fix query_timeout setting during connect
Mon May 23 10:04:25 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/unittests/dbmorecmds.c src/dblib/unittests/rpc.c:
* src/dblib/unittests/t0001.c src/dblib/unittests/t0003.c:
* src/dblib/unittests/t0004.c src/dblib/unittests/t0005.c:
* src/dblib/unittests/t0006.c src/dblib/unittests/t0007.c:
* src/dblib/unittests/t0008.c src/dblib/unittests/t0009.c:
* src/dblib/unittests/t0010.c src/dblib/unittests/t0012.c:
* src/dblib/unittests/t0013.c src/dblib/unittests/t0015.c:
* src/dblib/unittests/t0016.c src/dblib/unittests/t0017.c:
* src/dblib/unittests/t0018.c src/dblib/unittests/t0023.c:
- do not delete temporary table
Sun May 22 11:03:16 CET 2005 Frediano Ziglio <[email protected]>
* NEWS TODO configure.in: use odbc_config if possible
Sun May 22 10:26:02 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/prepare_query.c src/odbc/unittests/const_params.c:
- fix problems with Sybase
* src/odbc/unittests/array_out.c: remove warning compiling
Fri May 20 17:15:12 CET 2005 Frediano Ziglio <[email protected]>
* NEWS TODO: updated
* src/odbc/unittests/Makefile.am:
* src/odbc/unittests/array_out.c(added):
- added test for array binding
Fri May 20 14:36:52 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/ctlib/ct.c src/ctlib/unittests/cancel.c:
* src/dblib/bcp.c src/dblib/dblib.c src/odbc/odbc.c:
* src/tds/token.c:
- fix ctlib cancellation
* src/odbc/native.c src/odbc/prepare_query.c:
* src/odbc/prepare_query.h:
- handle different type in constant parameters in rpc
Fri May 20 08:54:50 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/dblib.c: thread safe fix
Wed May 18 17:54:24 CET 2005 Frediano Ziglio <[email protected]>
* src/ctlib/unittests/cancel.c:
- do not fail if ct_send is very slow
Wed May 18 13:59:41 CET 2005 Frediano Ziglio <[email protected]>
* src/ctlib/unittests/array_bind.c src/ctlib/unittests/cancel.c:
* src/ctlib/unittests/ct_diagall.c:
* src/ctlib/unittests/ct_diagclient.c:
* src/ctlib/unittests/ct_diagserver.c:
* src/ctlib/unittests/get_send_data.c:
* src/ctlib/unittests/lang_ct_param.c:
* src/ctlib/unittests/rpc_ct_param.c:
* src/ctlib/unittests/rpc_ct_setparam.c:
* src/ctlib/unittests/t0003.c:
* src/ctlib/unittests/t0004.c:
* src/ctlib/unittests/t0009.c:
- remove warnings dropping objects
* src/dblib/unittests/thread.c: fix syntax on Sybase
Tue May 17 16:02:20 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/Makefile.am: fix distro
* src/dblib/buffering.h src/tds/net.c:
- fix portability problem
* src/dblib/unittests/thread.c: update comment
Tue May 17 14:08:58 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/unittests/thread.c(added) src/dblib/unittests/.cvsignore:
* src/dblib/unittests/Makefile.am src/dblib/dblib.c:
* include/tdsthread.h configure.in:
- improve pthread support and detection
- add dblib test for thread safety
- recursive dbinit/dbexit calls
Tue May 17 11:12:02 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/dblib.c:
- fix leaks on connection error
* src/odbc/unittests/array.c: remove warning
* include/tds.h src/tds/net.c src/tds/config.c src/tds/threadsafe.c:
- use new tds_inet_ntoa_r
Mon May 16 14:29:24 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/unittests/array.c(added) src/odbc/unittests/.cvsignore:
* src/odbc/unittests/Makefile.am:
- added a test for array binding
Mon May 16 09:15:52 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc_util.c: small fixes
Sat May 14 08:30:44 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/unittests/t0008.c: fix test
Sat May 14 07:44:59 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/net.c: fix problem on *BSD
Wed May 11 21:52:10 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/native.c src/odbc/unittests/const_params.c:
- fix portability problems
Wed May 11 14:01:29 CET 2005 Frediano Ziglio <[email protected]>
* TODO: update
* include/tds.h src/odbc/native.c src/odbc/prepare_query.c:
* src/odbc/unittests/const_params.c src/tds/tds_checks.c:
- support empty parameters in odbc rpc
Wed May 11 10:54:44 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/dblib.c:
- cleanup and minor fixes
* src/odbc/native.c:
- better support for numeric constants
* src/odbc/unittests/const_params.c:
- do more developing stuff
* src/tds/read.c:
- add support for VOID type
Wed May 11 09:52:59 CET 2005 Frediano Ziglio <[email protected]>
* src/ctlib/unittests/rpc_ct_param.c:
* src/ctlib/unittests/rpc_ct_setparam.c:
* src/dblib/unittests/t0005.c:
* src/dblib/unittests/t0014.c:
* src/dblib/unittests/t0022.c:
* src/odbc/unittests/const_params.c:
- more cleanup of tables and procs in tests
Tue May 10 14:54:43 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/native.c src/odbc/odbc.c src/odbc/odbc_checks.c:
* src/odbc/odbc_util.c src/odbc/prepare_query.c:
* src/odbc/prepare_query.h src/odbc/unittests/const_params.c:
- initial support for constant parameters in rpc calls
Fri May 6 14:21:17 CET 2005 Frediano Ziglio <[email protected]>
* include/tdsthread.h(added) include/Makefile.am src/dblib/dblib.c:
* src/tds/util.c:
- merge partially Liam Widdowson patch on thread safety
Fri May 6 10:38:31 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/config.c src/dblib/dblib.c include/tds.h:
- add "query timeout" configuration
- remove timeout member from TDSCONNECTION
* src/odbc/unittests/timeout.c:
- report error with correct statement
Fri May 6 08:51:13 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c: other reuse
Tue May 3 17:04:31 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c:
- reuse odbc_process_tokens
Tue May 3 13:52:44 CET 2005 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/odbc.c:
- read as much tokens as it can (like ms one)
Tue May 3 13:47:56 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/rpc.c: fix dump
* src/odbc/unittests/raiserror.c: update
Tue May 3 10:01:15 CET 2005 Frediano Ziglio <[email protected]>
* doc/Makefile.am src/tds/Makefile.am:
- ignore warnings
Sat Apr 30 18:45:49 EDT 2005 JK Lowden <[email protected]>
* doc/htdoc/index.html doc/htdoc/news.html doc/htdoc/software.html
- update the website for 0.63.
Sat Apr 23 16:45:32 EDT 2005 JK Lowden <[email protected]>
* src/tds/Makefile.am $(srcdir) not needed on make variables
* src/dblib/rpc.c blobs as parameters (thanks, Frediano)
Tue Apr 19 13:52:43 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/odbc/unittests/raiserror.c:
- fix problem reading data before and after SQLFetch
Mon Apr 18 23:47:09 EDT 2005 JK Lowden <[email protected]>
* src/dblib/unittests/bcp.c src/dblib/unittests/dbmorecmds.c
* src/dblib/unittests/rpc.c src/dblib/unittests/t0001.c
* src/dblib/unittests/t0003.c src/dblib/unittests/t0004.c
* src/dblib/unittests/t0005.c src/dblib/unittests/t0006.c
* src/dblib/unittests/t0007.c src/dblib/unittests/t0008.c
* src/dblib/unittests/t0009.c src/dblib/unittests/t0010.c
* src/dblib/unittests/t0011.c src/dblib/unittests/t0012.c
* src/dblib/unittests/t0013.c src/dblib/unittests/t0014.c
* src/dblib/unittests/t0015.c src/dblib/unittests/t0016.c
* src/dblib/unittests/t0017.c src/dblib/unittests/t0018.c
* src/dblib/unittests/t0019.c src/dblib/unittests/t0020.c
* src/dblib/unittests/t0021.c src/dblib/unittests/t0022.c
* src/dblib/unittests/t0023.c
- add comments in a standard form to describe the purpose of
- the test and the functions tested.
Mon Apr 18 11:34:50 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/dblib.c: fix a small error in dblib
Mon Apr 18 01:14:40 EDT 2005 JK Lowden <[email protected]>
* configure.in exclude vms from outputs (use EXTRA_DIST)
Sat Apr 16 19:52:13 EDT 2005 JK Lowden <[email protected]>
* Makefile.am vms/Makefile.am don't try to generate a vms makefile
* include/dblib.h src/dblib/dblib.c src/dblib/buffering.h
* src/dblib/unittests/t0002.c New buffering algorithm
Fri Apr 15 15:33:08 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/odbc/unittests/prepare_results.c:
* src/odbc/unittests/typeinfo.c:
- imported some tests from DBD::ODBC (fixed)
Fri Apr 15 13:48:06 CET 2005 Frediano Ziglio <[email protected]>
* include/ctlib.h include/dblib.h include/tds.h:
* include/tdsconvert.h src/apps/tsql.c src/ctlib/cs.c:
* src/ctlib/ctutil.c src/dblib/dblib.c src/dblib/dbutil.c:
* src/odbc/odbc.c src/pool/member.c src/server/login.c:
* src/tds/convert.c src/tds/mem.c src/tds/token.c:
* src/tds/util.c:
- TDSCONTEXT constification
- removed tds_ctx_set_parent/tds_ctx_get_parent
- add parent argument to tds_alloc_context
Thu Apr 14 13:33:14 CET 2005 Frediano Ziglio <[email protected]>
* src/apps/tsql.c: check proper result type for rows
* include/tds.h src/dblib/dblib.c src/odbc/odbc.c:
* src/tds/token.c:
- removed tds_process_trailing_tokens
* src/tds/unittests/t0005.c src/tds/unittests/t0006.c:
* src/tds/unittests/utf8_1.c:
- remove warnings
Thu Apr 14 13:33:14 CET 2005 Frediano Ziglio <[email protected]>
* NEWS include/tds.h src/apps/tsql.c src/ctlib/blk.c:
* src/ctlib/ct.c src/dblib/bcp.c src/dblib/dblib.c:
* src/odbc/odbc.c src/tds/token.c src/tds/example/token1.c:
* src/tds/example/token2.c src/tds/unittests/common.c:
* src/tds/unittests/dataread.c src/tds/unittests/dynamic1.c:
* src/tds/unittests/flags.c src/tds/unittests/t0002.c:
* src/tds/unittests/t0004.c src/tds/unittests/t0005.c:
* src/tds/unittests/t0006.c src/tds/unittests/utf8_1.c:
* src/tds/unittests/utf8_2.c src/tds/unittests/utf8_3.c:
- reuse new tds_process_tokens
* src/odbc/unittests/moreandcount.c: more verbose
Wed Apr 13 18:20:57 EDT 2005 JK Lowden <[email protected]>
* src/dblib/dblib.c src/dblib/unittests/t0002.c
- fixed dbclrbuf, probably. dbgetrow is broken.
Wed Apr 13 13:44:58 EDT 2005 JK Lowden <[email protected]>
* src/dblib/unittests/t0002.c
- changed to test multiple resultsets.
- test works: buffering is broken.
Wed Apr 13 13:44:58 EDT 2005 JK Lowden <[email protected]>
* src/dblib/unittests/t0002.c cleanup, no functional change
Wed Apr 13 18:57:21 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/token.c:
- added tds_process_tokens function
- use new function to code old one
* src/odbc/unittests/moreandcount.c: more verbose
Tue Apr 12 09:17:06 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c:
- proper cursor state check
- fix print and compute tests
* src/odbc/unittests/common.c: error to error stream
* src/odbc/unittests/prepare_results.c: reuse and update
* src/odbc/unittests/print.c: update
Mon Apr 11 15:50:35 CET 2005 Frediano Ziglio <[email protected]>
* NEWS TODO: update
Mon Apr 11 13:05:39 CET 2005 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/odbc.c:
- do not return data if not present
* src/odbc/unittests/print.c: updated
Mon Apr 11 11:34:54 CET 2005 Frediano Ziglio <[email protected]>
* freetds.spec.in:
- cleanup
- put *.so file in -devel package
* src/odbc/unittests/moreandcount.c:
- add some comments
* src/odbc/unittests/raiserror.c:
- update to catch some problems
Fri Apr 8 16:56:06 EDT 2005 JK Lowden <[email protected]>
* src/odbc/unittests/raiserror.c slight reformatting
* samples/odbc_rpc.pl added error handler
Fri Apr 8 15:46:13 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/bcp.c:
- comments style update
- fix small buffer underflow reading format file
- better handle of memory errors
- added some TODO/FIXME comments
Wed Apr 6 11:50:40 EDT 2005 JK Lowden <[email protected]>
* samples/odbc_rpc.pl works
Wed Apr 6 02:38:19 EDT 2005 JK Lowden <[email protected]>
* autogen.sh src/tds/Makefile.am src/tds/encodings.pl
- allowed for out-of-tree building. Do not assume .c and .o
- are in the same directory. Put built .h files in $(srcdir).
* doc/userguide.sgml edited debug flags for idiom, plus explanations.
Tue Apr 5 19:02:49 EDT 2005 JK Lowden <[email protected]>
* samples/odbc_rpc.pl fixed silly getopt misprocessing
Tue Apr 5 18:47:05 EDT 2005 JK Lowden <[email protected]>
* samples/odbc_rpc.pl added datatyping feature
Tue Apr 5 18:08:50 EDT 2005 JK Lowden <[email protected]>
* samples/odbc_rpc.pl new example of RPC use
Tue Apr 5 11:44:48 EDT 2005 JK Lowden <[email protected]>
* doc/userguide.sgml doc/htdoc/faq.html
- updated, moved CVS instructions
Tue Apr 5 16:53:02 CET 2005 Frediano Ziglio <[email protected]>
* configure.in src/tds/encodings.h(removed):
* src/tds/sybase_character_sets.h(removed):
* src/tds/sybase_character_sets.h.pl(removed):
* src/tds/tds_willconvert.h(removed):
* src/tds/tds_willconvert.pl(added):
* src/tds/convert.c src/tds/Makefile.am src/tds/encodings.pl:
- normalize perl generated file
- moved embedded perl from convert.c to tds_willconvert.c
- move sybase_character_sets.pl code in encodings.pl
- removed autogenerated files
Tue Apr 5 13:41:55 CET 2005 Frediano Ziglio <[email protected]>
* configure.in src/tds/Makefile.am src/tds/numeric.pl(removed):
* src/tds/num_limits.pl(added):
- moved src/tds/numeric.pl to src/tds/num_limits.pl
Tue Apr 5 11:15:12 CET 2005 Frediano Ziglio <[email protected]>
* NEWS TODO: updates
* freetds.spec.in:
- improved dependency for RedHat and SUSE
- install drivers in unixODBC
Tue Apr 5 10:36:58 CET 2005 Frediano Ziglio <[email protected]>
* doc/userguide.sgml: committed new debug flag option
Mon Apr 4 18:02:53 EDT 2005 JK Lowden <[email protected]>
* samples/odbctest.pl made a little more useful
Mon Apr 4 10:34:02 CET 2005 Frediano Ziglio <[email protected]>
* include/dblib.h src/dblib/bcp.c:
- make static some functions
Sun Apr 3 15:36:12 CET 2005 Frediano Ziglio <[email protected]>
* src/apps/freebcp.c src/ctlib/cs.c src/ctlib/ct.c:
* src/ctlib/unittests/cancel.c src/dblib/bcp.c:
* src/dblib/dblib.c src/dblib/rpc.c:
* src/dblib/unittests/rpc.c src/tds/convert.c:
* src/tds/mem.c src/tds/token.c:
- removed NULL casts
Sun Apr 3 11:21:24 CET 2005 Frediano Ziglio <[email protected]>
* Makefile.am configure.in vms/Makefile.am(added):
- make VMS distribution as subdirectory do not include everything
* src/tds/Makefile.am:
- cleanup
Fri Apr 1 15:42:22 EST 2005 JK Lowden <[email protected]>
* configure.in src/tds/Makefile.am removed commented-out code.
Fri Apr 1 15:33:17 EST 2005 JK Lowden <[email protected]>
* autogen.sh use autoregen
* configure.in src/tds/Makefile.am
- build num_limits.h only if numlimits.pl is present.
Wed Mar 30 11:53:58 EST 2005 JK Lowden <[email protected]>
* src/tds/Makefile.am reformatted
Wed Mar 30 11:20:38 EST 2005 JK Lowden <[email protected]>
* src/tds/Makefile.am build num_limits.h with Perl (for CVS)
Wed Mar 30 10:10:43 EST 2005 JK Lowden <[email protected]>
* src/dblib/dblib.c remove broken casts
Wed Mar 30 12:57:02 CET 2005 Frediano Ziglio <[email protected]>
* src/ctlib/ct.c:
- remove warning
- check datalen >= 0
Tue Mar 29 17:18:50 CET 2005 Frediano Ziglio <[email protected]>
* src/ctlib/blk.c src/dblib/unittests/bcp.c:
* src/odbc/odbc.c src/odbc/unittests/genparams.c:
* src/odbc/unittests/insert_speed.c src/odbc/unittests/params.c:
* src/odbc/unittests/prepare_results.c src/odbc/unittests/preperror.c:
* src/odbc/unittests/raiserror.c src/odbc/unittests/t0003.c:
* src/odbc/unittests/tables.c src/odbc/unittests/timeout.c:
* src/odbc/unittests/transaction.c src/tds/query.c:
* src/tds/unittests/utf8_1.c src/tds/unittests/utf8_2.c:
- remove some warnings
Tue Mar 29 11:57:50 CET 2005 Frediano Ziglio <[email protected]>
* src/server/query.c src/ctlib/blk.c:
- remove some warnings
Mon Mar 28 09:52:42 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/convert.c src/tds/unittests/convert.c:
- optimizations for char -> numeric conversions
Fri Mar 25 17:21:07 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/convert.c:
- use new function to change scale/precesion
* src/tds/numeric.c:
- use asm to improve performance on Intel
Thu Mar 24 15:43:14 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/numeric.c src/tds/numeric.pl:
* src/tds/unittests/numeric.c:
- change precision and scale of numeric together
Wed Mar 23 17:50:56 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/Makefile.am: fix distribution
* src/tds/numeric.c: fix compile, remove ugly goto
Wed Mar 23 17:50:56 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/Makefile.am src/tds/numeric.c:
* src/tds/unittests/Makefile.am:
* src/tds/unittests/numeric.c(added):
- scale numeric in a faster way
* misc/test-auto.sh: updated, better output
Mon Mar 14 13:48:36 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/token.c: avoid infinite loop on cancel
Sun Mar 13 09:16:17 PST 2005 Peter Deacon <[email protected]>
* src/odbc/error.c: rank did not clear trans status
Sun Mar 13 11:21:40 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/error.c:
- make rank_errors static
- change style
* src/tds/net.c: int FAR have no sense in no pointer context
Sat Mar 12 01:23:17 PST 2005 Peter Deacon <[email protected]>
* include/tdsodbc.h src/odbc/error.c:
- order messages by severity and type
* include/tds_sysdep_private.h src/tds/util.c src/tds/login.c
* src/tds/config.c:
- fixed incorrect client process id on the windows platform
* src/tds/query.c: include numeric characters in quote exception
* src/tds/mem.c: native error to sqlstate mappings
* src/tds/net.c: prevent infinite wait if socket connect fails
Sun Feb 27 09:47:50 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/iconv.c:
- make sure we don't core if server charset is not supported
Sat Feb 26 14:08:27 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/alternative_character_sets.h:
* src/tds/character_sets.h src/tds/encodings.h:
* src/tds/iconv.c src/tds/sybase_character_sets.h:
- support for CP437 charset
Tue Feb 22 17:03:21 CET 2005 Frediano Ziglio <[email protected]>
* src/apps/bsqldb.c src/ctlib/ct.c src/odbc/unittests/compute.c:
* src/replacements/readpassphrase.c src/tds/net.c:
- remove some warning
Mon Feb 21 15:43:17 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/login.c: do not do pre-login if SSL not enabled
Sun Feb 20 10:18:47 CET 2005 Frediano Ziglio <[email protected]>
* misc/test-other.sh: improved
* src/odbc/unittests/print.c: some fixes
* src/tds/query.c: fix core in emulated prepared, handle NULLs
* src/tds/token.c: fix buffer overflow using text
* src/tds/unittests/dataread.c:
- improved to catch problems reallocating BLOBs
Fri Feb 18 13:55:26 CET 2005 Frediano Ziglio <[email protected]>
* TODO: updated
* include/tdsodbc.h src/odbc/odbc.c src/odbc/unittests/typeinfo.c:
- fix problem using SQLGetTypeInfo in Sybase and ODBC 3.x
- do not prepare too much on Sybase
- update for NODM environment
* src/ctlib/blk.c: add comment
* src/ctlib/unittests/cancel.c: decrease timeout, too high
Thu Feb 17 22:27:45 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/odbc/unittests/timeout.c:
- fix timeout in ODBC
Wed Feb 16 20:22:37 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/util.c:
- fix reentrancy problem using logs and append mode
- make tdsdump_append static
* src/ctlib/ct.c:
- fix use of freed memory
Tue Feb 15 14:03:00 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/net.c TODO:
- improve support for getting port on mssql2k (mainly using clusters)
Tue Feb 15 10:07:12 CET 2005 Frediano Ziglio <[email protected]>
* TODO: updated
* src/ctlib/ct.c: fix possible client buffer overflow
* src/odbc/odbc.c: correctly free dynamic if fails
* src/tds/login.c: comment
Mon Feb 14 13:44:44 CET 2005 Frediano Ziglio <[email protected]>
* doc/.cvsignore doc/Makefile.am:
- use less temporary files
Fri Feb 11 14:12:30 CET 2005 Frediano Ziglio <[email protected]>
* include/cspublic.h include/cstypes.h include/ctlib.h:
* include/ctpublic.h include/tds.h src/ctlib/cs.c:
* src/ctlib/ct.c src/ctlib/unittests/ct_cursor.c:
* src/ctlib/unittests/rpc_ct_setparam.c:
* src/tds/login.c src/tds/mem.c src/tds/query.c:
* src/tds/token.c src/ctlib/unittests/Makefile.am:
* src/ctlib/unittests/ct_dynamic.c(added):
- applied Bill Thompson patch:
- extra cursor functionality
- support for ct_dynamic()
- full ct_cancel implementation
- Alex Kiesel patch for CS_SERVERADDR etc.
Wed Feb 9 20:44:55 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/mem.c src/tds/unittests/dynamic1.c:
- better fix for leak on dynamics and Sybase
Wed Feb 9 20:17:53 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/unittests/common.c src/odbc/unittests/convert_error.c:
* src/odbc/unittests/raiserror.c src/odbc/unittests/timeout.c:
* src/odbc/unittests/typeinfo.c src/tds/unittests/dynamic1.c:
- fix leaks in tests
Wed Feb 9 11:08:02 EST 2005 JK Lowden <[email protected]>
* include/dblib.h include/tds.h include/tdsodbc.h src/apps/bsqldb.c
* src/apps/freebcp.c src/apps/tsql.c src/ctlib/blk.c src/ctlib/cs.c
* src/ctlib/ct.c src/dblib/bcp.c src/dblib/dblib.c src/dblib/rpc.c
* src/odbc/connectparams.c src/odbc/connectparams.h src/odbc/odbc_util.c
* src/odbc/odbc_util.h src/odbc/sql2tds.c src/pool/member.c
* src/pool/stream.c src/pool/user.c src/tds/config.c src/tds/convert.c
* src/tds/data.c src/tds/iconv.c src/tds/login.c src/tds/mem.c
* src/tds/query.c src/tds/tds_checks.c src/tds/token.c src/tds/util.c
* src/tds/unittests/flags.c src/tds/unittests/utf8_3.c
- updated copyright
Wed Feb 9 15:55:45 CET 2005 Frediano Ziglio <[email protected]>
* TODO: updated
* configure.in src/tds/login.c:
- check error during SSL initialization
- fix some possible memory leaks
* src/tds/mem.c: remove memory leak
* src/dblib/dblib.c: srclen == 0 means NULL for dbconvert
Tue Feb 8 16:42:14 EST 2005 JK Lowden <[email protected]>
* doc/userguide.sgml add to OS-specific, and use mdash element
Tue Feb 8 14:50:39 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/ctlib/blk.c src/ctlib/cs.c:
* src/dblib/bcp.c src/tds/numeric.c src/tds/query.c:
* src/tds/tds_checks.c src/tds/token.c:
- add tds_swap_numeric, use it
- fix numeric and bcp
Tue Feb 8 13:08:12 CET 2005 Frediano Ziglio <[email protected]>
* NEWS: updated
* include/tds.h src/tds/config.c src/tds/login.c:
* src/tds/mem.c src/tds/util.c:
- support "debug flags" option
* src/dblib/bcp.c:
- fix invalid free
Tue Feb 8 10:26:40 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/dblib.c: fix return from dbretlen
Tue Feb 8 10:22:05 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/unittests/rpc.c: improved, fix leak
* include/tds.h src/tds/login.c src/tds/mem.c:
- fix leak using SSL
- free access to not allocated data
Mon Feb 7 15:22:50 CET 2005 Frediano Ziglio <[email protected]>
* TODO: updated
* configure.in include/tds.h src/tds/login.c src/tds/mem.c:
* src/tds/net.c:
- support for encrypted connection under mssql
- fix memory leak freeing result with text (introduced recently)
Fri Feb 4 15:02:17 CET 2005 Frediano Ziglio <[email protected]>
* TODO: updated
* src/tds/login.c: do not send NT login using TDS < 7.0
Thu Feb 3 10:38:00 CET 2005 Frediano Ziglio <[email protected]>
* src/apps/freebcp.c vms/descrip_mms.template vms/getpass.c:
- applied patch from Craig A. Berry for bcp and VMS
Thu Feb 3 10:03:57 CET 2005 Frediano Ziglio <[email protected]>
* doc/tds_ssl.html doc/userguide.sgml:
- update some docs
Thu Feb 3 09:24:25 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/bcp.c:
- applied patch from Craig A. Berry, fix an overflow using utf8
Wed Feb 2 20:08:08 CET 2005 Frediano Ziglio <[email protected]>
* freetds.conf include/tds.h src/odbc/connectparams.c:
* src/odbc/odbc.c src/tds/config.c src/tds/login.c:
* src/tds/mem.c:
- cleanup of old configurations parameters about NT domain
Tue Feb 1 13:59:52 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/ctlib/ct.c src/dblib/dblib.c:
* src/tds/mem.c src/tds/token.c:
- fix int overflow if compute BY clause have more than 255 columns
* src/ctlib/blk.c: small fixes
* src/dblib/bcp.c: cleanup
Mon Jan 31 14:06:33 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/unittests/utf8_3.c: small fix
* src/tds/net.c: use always no-blocking socket
Mon Jan 31 10:54:40 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/apps/tsql.c src/ctlib/ct.c:
* src/dblib/bcp.c src/dblib/dblib.c src/dblib/rpc.c:
* src/odbc/odbc.c src/odbc/odbc_util.c src/odbc/sql2tds.c:
* src/tds/data.c src/tds/mem.c src/tds/query.c:
* src/tds/tds_checks.c src/tds/token.c:
- use column_cur_size to store nullability flag
Sun Jan 30 12:46:17 CET 2005 Frediano Ziglio <[email protected]>
* doc/userguide.sgml: updated
* doc/api_status.txt: add view source
Sun Jan 30 11:09:18 CET 2005 Frediano Ziglio <[email protected]>
* NEWS TODO: updates
* src/tds/net.c: small improve and comments
Sat Jan 29 09:11:11 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h: just comment
Wed Jan 26 09:29:03 CET 2005 Frediano Ziglio <[email protected]>
* win32/msvc6/FreeTDS.dsp win32/msvc6/dblib.dsp:
* win32/msvc6/libTDS.dsp:
- use Multithreaded DLL as default (as Frank M. Kromann
suggested)
Wed Jan 26 09:17:35 CET 2005 Frediano Ziglio <[email protected]>
* doc/tds_ssl.html(added) doc/Makefile.am:
- add doc for mssql and encryption
Tue Jan 25 09:51:52 CET 2005 Frediano Ziglio <[email protected]>
* win32/msvc6/dblib.dsp(added) win32/msvc6/libTDS.dsp(added):
* include/replacements.h win32/msvc6/FreeTDS.dsp:
* win32/msvc6/FreeTDS.dsw win32/msvc6/Makefile.am:
- imported Frank M. Kromann dblib project file for msvc6
- add projec for libTDS (shared by ODBC and dblib)
- fix include for win32
Mon Jan 24 21:07:36 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/odbc/connectparams.c src/tds/config.c:
* src/tds/login.c src/tds/mem.c:
- implement named instance in libTDS and ODBC
Mon Jan 24 19:37:48 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/unittests/timeout.c: comment
* src/tds/token.c: do set wrong state processing tokens
Mon Jan 24 16:03:24 CET 2005 Frediano Ziglio <[email protected]>
* TODO: updated
* src/odbc/connectparams.c: check memory allocation
* include/tds.h src/tds/net.c:
- start implementing named instance for mssql2k
Fri Jan 21 13:59:30 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/sql2tds.c:
- workaround for DBD::ODBC
Fri Jan 21 12:37:00 CET 2005 Frediano Ziglio <[email protected]>
* src/ctlib/unittests/cancel.c: not developing anymore
* src/odbc/odbc.c: improve timeout
* src/odbc/unittests/const_params.c: compile check
* src/tds/net.c: small update
Thu Jan 20 17:17:20 CET 2005 Frediano Ziglio <[email protected]>
* NEWS TODO include/tds.h src/dblib/dblib.c src/odbc/odbc.c:
* src/tds/config.c src/tds/login.c src/tds/mem.c:
* src/tds/net.c src/tds/query.c src/tds/token.c:
- timeout stuff improved, now works
Thu Jan 20 15:37:37 CET 2005 Frediano Ziglio <[email protected]>
* include/tds.h src/ctlib/blk.c src/ctlib/ct.c src/dblib/bcp.c:
* src/dblib/dblib.c src/tds/query.c src/tds/tds_checks.c:
* src/tds/token.c src/tds/util.c:
- add TDS_READING state
- fix changing state
- fix cancelling
* src/odbc/odbc.c: fix for possible link problem
Mon Jan 17 20:10:41 CET 2005 Frediano Ziglio <[email protected]>
* doc/api_status.txt src/odbc/odbc.c vms/odbc_driver_axp.opt:
* win32/FreeTDS.def:
- implemented SQLExtendedFetch
* src/ctlib/ct.c:
- ct_get_data
- fix null column
- fix a possible buffer overflow
* src/dblib/dblib.c: small update
Sun Jan 16 10:45:05 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/bcp.c:
- better quote
- fix possible memory leak
Sat Jan 15 19:28:32 CET 2005 Frediano Ziglio <[email protected]>
* NEWS: update
* src/tds/query.c TODO: limit max size
Fri Jan 14 11:52:45 EST 2005 JK Lowden <[email protected]>
* src/apps/bsqldb.c corrected 'go' batch separator
Fri Jan 14 11:48:27 EST 2005 JK Lowden <[email protected]>
* TODO updated
* src/dblib/bcp.c quote column names
Fri Jan 14 9:05:08 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/dblib.c:
- quote database name in dbuse
- removed useless casts
* src/tds/query.c:
- fixed id quoting
Thu Jan 13 16:17:26 CET 2005 Frediano Ziglio <[email protected]>
* TODO: updated
* include/tds.h:
- fix problem with long column name and multibyte charset
* src/tds/query.c: remove a FIXME
* src/tds/unittests/Makefile.am src/tds/unittests/utf8_3.c(added):
- add a test for long column name
Thu Jan 13 11:07:27 CET 2005 Frediano Ziglio <[email protected]>
* TODO src/odbc/odbc.c:
- updated TODO
- finished compute fixes
Thu Jan 13 9:38:19 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/unittests/common.c src/odbc/unittests/compute.c:
- finish compute test
- allow compile of tests under win32
Wed Jan 12 21:42:47 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/odbc/unittests/compute.c:
- fix metadata handling in compute
- improve compute test
* src/tds/token.c:
- fix wrong return
- handle error correctly in tds_process_result_tokens
Wed Jan 12 20:40:14 CET 2005 Frediano Ziglio <[email protected]>
* NEWS include/tds.h include/tdsodbc.h src/dblib/bcp.c:
* src/odbc/odbc.c src/odbc/unittests/compute.c:
* src/tds/mem.c src/tds/token.c:
- removed tds_do_until_done (not used)
- handle correctly COMPUTE in ODBC
Wed Jan 12 9:43:34 CET 2005 Frediano Ziglio <[email protected]>
* NEWS TODO doc/api_status.txt include/tds.h src/ctlib/cs.c:
* src/dblib/dblib.c src/tds/login.c src/tds/mem.c:
* src/tds/token.c:
- changed tds_alloc_compute_results declaration
- implemented some dbmny* function in dblib
- added some additional test in dblib
Mon Jan 10 10:37:40 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/unittests/rpc.c: improved
Mon Jan 10 9:50:52 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/bcp.c src/dblib/dblib.c:
- constify
- check input
* src/dblib/rpc.c: fix column_cur_size value
Sun Jan 9 20:40:50 CET 2005 Frediano Ziglio <[email protected]>
* src/tds/config.c src/tds/des.c src/tds/iconv.c:
* src/tds/util.c:
- paranoid constify
Sun Jan 9 18:24:26 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/unittests/insert_speed.c: fixed
Sun Jan 9 14:51:43 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/unittests/t0018.c: improved from #1088672
Sun Jan 9 14:24:44 CET 2005 Frediano Ziglio <[email protected]>
* src/dblib/rpc.c src/tds/convert.c:
- fix output parameter on mssql
Fri Jan 7 11:56:52 EST 2005 JK Lowden <[email protected]>
* src/dblib/dblib.c src/dblib/unittests/t0002.c
- SYBVARBINARY and patch #1083180
Fri Jan 7 13:49:56 CET 2005 Frediano Ziglio <[email protected]>
* src/odbc/sql2tds.c: update logging
Thu Jan 6 23:44:59 EST 2005 JK Lowden <[email protected]>
* src/dblib/unittests/rpc.c correct rpc unittest
Thu Jan 6 15:13:56 EST 2005 JK Lowden <[email protected]>
* doc/tds.html src/dblib/unittests/README updated docs
Wed Jan 5 22:07:07 EST 2005 JK Lowden <[email protected]>
* include/dblib.h src/dblib/dblib.c src/dblib/rpc.c
- Patch 1095806 by Bill Thompson
- PRINT packets handled correctly (do not yield stale metadata).
Fri Dec 31 14:15:28 EST 2004 JK Lowden <[email protected]>
* src/apps/freebcp.c use getopt(3)
* src/dblib/bcp.c firstrow and lastrow are independent
Wed Dec 22 21:09:47 CET 2004 Frediano Ziglio <[email protected]>
* src/dblib/bcp.c: fix memory leak reported by Brad Rittenhouse
Fri Dec 17 10:54:25 CET 2004 Frediano Ziglio <[email protected]>
* src/dblib/bcp.c src/dblib/dblib.c src/odbc/connectparams.c:
* src/replacements/iconv.c src/tds/config.c:
* src/tds/token.c:
- update logging string
Fri Dec 17 01:36:33 EST 2004 JK Lowden <[email protected]>
* src/dblib/dblib.c src/dblib/dbutil.c src/tds/token.c
- route PRINT messages (e.g. EED packets) to client msg handler.
Thu Dec 16 21:05:55 EST 2004 JK Lowden <[email protected]>
* src/pool/member.c src/pool/user.c
- allow compiling pool without MSG_NOSIGNAL
Wed Dec 15 16:02:55 CET 2004 Frediano Ziglio <[email protected]>
* src/replacements/Makefile.am: include new files in distro
* src/tds/query.c src/tds/token.c:
- fixes for some compiler
Wed Dec 15 10:59:45 CET 2004 Frediano Ziglio <[email protected]>
* include/sybdb.h: workaround for PHP
* src/tds/unittests/convert.c: avoid false statistics
Wed Dec 15 09:23:55 CET 2004 Frediano Ziglio <[email protected]>
* src/tds/tds_checks.c: improved
Tue Dec 14 11:07:19 CET 2004 Frediano Ziglio <[email protected]>
* src/odbc/unittests/Makefile.am src/odbc/unittests/compute.c:
- finished test (not working)
Tue Dec 14 09:36:25 CET 2004 Frediano Ziglio <[email protected]>
* src/apps/bsqldb.c: remove a warning
Mon Dec 13 19:28:34 EST 2004 Brian Bruns <[email protected]>
* src/pool/pool.h: add reference to assign member to TDS_POOL_USER
* src/pool/main.c: comment out debug message
* src/pool/member.c:
* src/pool/user.c: fix cleanup routines on read/write error
Mon Dec 13 20:21:32 CET 2004 Frediano Ziglio <[email protected]>
* src/pool/config.c src/pool/member.c src/pool/pool.h:
* src/pool/stream.c src/pool/user.c:
- update comment style
- small fixes
* src/tds/convert.c:
- give compiler one more chance to optimize
Mon Dec 13 20:12:25 CET 2004 Frediano Ziglio <[email protected]>
* src/replacements/readpassphrase.c(added):
* src/replacements/readpassphrase.h(added):
- replacements for readpassphrase
* configure.in include/replacements.h src/apps/tsql.c:
- use readpassphrase instead of getpass
Mon Dec 13 14:20:14 CET 2004 Frediano Ziglio <[email protected]>
* src/dblib/rpc.c: merged with trunk 0.63
* include/tds.h src/tds/util.c:
- improve logging (not finished)
Mon Dec 13 11:57:44 CET 2004 Frediano Ziglio <[email protected]>
* acinclude.m4 autogen.sh configure.in misc/test-dist.sh:
* src/apps/Makefile.am src/ctlib/Makefile.am:
* src/dblib/Makefile.am src/odbc/Makefile.am:
* src/server/Makefile.am src/tds/Makefile.am:
- imported changes from 0.63 trunk
Sun Dec 12 10:07:06 EST 2004 Brian Bruns <[email protected]>
* src/pool/main.c: setsockopt to SO_REUSEADDR
* src/pool/member.c: use netlib final packet flag instead of done token.
* src/pool/user.c: reallocate dead users
Sat Dec 11 14:32:31 CET 2004 Frediano Ziglio <[email protected]>
* src/pool/main.c src/pool/member.c src/pool/pool.h:
* src/pool/user.c:
- update style
Sat Dec 11 14:26:47 CET 2004 Frediano Ziglio <[email protected]>
* src/apps/tsql.c: use current_results, not res_info
* src/dblib/unittests/rpc.c: backported improved test
Fri Dec 10 14:59:47 EST 2004 JK Lowden <[email protected]>
* src/tds/convert.c
- apply patch, modified, from Bill Thompson cf. ML today.
Thu Dec 09 11:17:27 CET 2004 Frediano Ziglio <[email protected]>
* src/tds/query.c: cleanup, reuse tds_set_state
Thu Dec 09 11:15:25 CET 2004 Frediano Ziglio <[email protected]>
* src/odbc/unittests/Makefile.am:
* src/odbc/unittests/insert_speed.c(added):
- add a new test from ML
Thu Dec 09 10:05:35 CET 2004 Frediano Ziglio <[email protected]>
* src/dblib/rpc.c:
- fix a possible leak and memory very low
- avoid memcpy(x,x,-1)
- better null parameters handling
Wed Dec 08 21:29:08 CET 2004 Frediano Ziglio <[email protected]>
* NEWS TODO: update
* misc/test-dist.sh: bit improve
* src/odbc/convert_tds2sql.c src/odbc/convert_tds2sql.h:
* src/odbc/odbc.c src/odbc/odbc_util.c src/odbc/unittests/data.c:
* src/tds/convert.c:
- fix bug converting numeric with different precision/scale
- add some TODO for cursors support in ODBC
* src/odbc/sql2tds.h: add copyright line for 2004
* src/odbc/unittests/genparams.c: improve
Tue Dec 7 17:34:21 EST 2004 JK Lowden <[email protected]>
* include/tds.h
* src/tds/net.c src/tds/query.c src/tds/token.c src/tds/util.c
* src/dblib/bcp.c src/dblib/dblib.c
* src/ctlib/blk.c src/ctlib/ct.c
- implement and use tds_set_state() to set state with logging.
- change TDSSOCKET::state to enumerated type.
Tue Dec 7 16:10:44 EST 2004 JK Lowden <[email protected]>
* acinclude.m4 fix underquoting
- cf. info '(automake)Extending aclocal' (Autoconf 2.59)
Tue Dec 07 18:48:27 CET 2004 Frediano Ziglio <[email protected]>
* src/apps/Makefile.am src/ctlib/Makefile.am:
* src/dblib/Makefile.am src/odbc/Makefile.am:
* src/server/Makefile.am src/tds/Makefile.am:
- give a priority order to libraries
Mon Dec 06 15:38:56 CET 2004 Frediano Ziglio <[email protected]>
* src/tds/query.c: fix state change
Mon Dec 06 14:28:28 CET 2004 Frediano Ziglio <[email protected]>
* src/tds/config.c: remove printf
* src/tds/convert.c: cleanup
* src/tds/query.c: reuse tds_to_quering
Sun Dec 05 21:03:50 CET 2004 Frediano Ziglio <[email protected]>
* NEWS: updated
* include/ctlib.h include/tds.h src/ctlib/ct.c:
* src/tds/mem.c src/tds/query.c src/tds/token.c:
- removed cursor_client_id, use direct TDSCURSOR*
Fri Dec 03 21:14:48 CET 2004 Frediano Ziglio <[email protected]>
* include/tds.h src/ctlib/ct.c src/tds/mem.c src/tds/query.c:
* src/tds/tds_checks.c:
- cleanup
- renamed TDSSOCKET->cursor in TDSSOCKET->cursors
- avoid pointer to garbage
Fri Dec 03 17:46:20 CET 2004 Frediano Ziglio <[email protected]>
* NEWS: update
* include/tds.h src/ctlib/ct.c src/tds/mem.c src/tds/query.c:
* src/tds/tds_checks.c src/tds/token.c:
- update docs