forked from FreeTDS/freetds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-2003
3341 lines (2694 loc) · 130 KB
/
ChangeLog-2003
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
Wed Dec 31 14:38:41 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: some shell do not like '^' in arguments
* doc/txt2man: fix gawk problems if utf8 is enabled
Wed Dec 31 12:32:46 CET 2003 Frediano Ziglio <[email protected]>
* include/tds.h include/tdsstring.h src/tds/tdsstring.c:
- make DSTR more compiler-alike
Wed Dec 31 09:04:46 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: fix problem with sh and old Solaris
Wed Dec 31 08:54:06 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/threadsafe.c: remove warning on FreeBSD
Tue Dec 30 15:44:46 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/convert.c src/tds/token.c:
- comments
- fix return error converting from char to bit
Tue Dec 30 13:43:21 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/tds/convert.c src/tds/util.c:
- removed Amd64 warnings
Tue Dec 30 11:26:58 CET 2003 Frediano Ziglio <[email protected]>
* configure.in include/tds.h include/tds_sysdep_public.h.in:
* src/odbc/odbc.c win32/tds_sysdep_public.h:
- added TDS_INTPTR type (to remove warnings with 64bit platform)
Mon Dec 29 23:37:21 CET 2003 Frediano Ziglio <[email protected]>
* acinclude.m4 configure.in src/pool/user.c src/server/login.c:
- fix problem with Linux Amd64 problem
* misc/test-dist.sh: fix error if freetds-* is not present
Mon Dec 29 22:44:33 CET 2003 Frediano Ziglio <[email protected]>
* src/ctlib/unittests/cs_config.c src/odbc/unittests/transaction.c:
- remove warnings compiling unittests
Mon Dec 29 18:04:58 CET 2003 Frediano Ziglio <[email protected]>
* freetds.spec.in doc/README.releasing:
- updates for rpm
Mon Dec 29 17:07:45 CET 2003 Frediano Ziglio <[email protected]>
* include/tds_sysdep_private.h src/tds/login.c:
* src/tds/read.c src/tds/write.c:
- fix problem with win32
* src/odbc/odbc.c: fix problem with big-endian machines
* src/odbc/odbc_util.c src/odbc/odbc_util.h:
- fix possible lose of precision and string shorting
* src/tds/iconv.c: warning
* win32/config.h: remove warning
* win32/dev-cpp/FreeTDS.dev win32/dev-cpp/Makefile.win:
* win32/msvc6/FreeTDS.dsp:
- updated
Mon Dec 29 10:45:25 EST 2003 JK Lowden <[email protected]>
* tds.dox use short names, so HP/UX can unpack the tarball.
* doc/Makefile.am fail if man pages don't build, better doc install
* doc/README.releasing release engineering notes
* doc/userguide.sgml OS X ODBC note
* src/dblib/bcp.c patch from Christos for native bcp null handling
* src/tds/token.c remove bogus log entry
Mon Dec 29 15:18:26 CET 2003 Frediano Ziglio <[email protected]>
* freetds.spec.in doc/Makefile.am:
- install images for userguide
- fix install on some old platforms (like HP/UX 10.20)
Mon Dec 29 14:56:14 CET 2003 Frediano Ziglio <[email protected]>
* doc/images/important.gif(added) doc/images/tip.gif(added):
* doc/images/note.gif(added):
- added images for userguide
Sun Dec 28 18:53:08 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/iconv.c src/tds/token.c: comment updates
* src/tds/query.c: fix possible buffer read overflow
Sun Dec 28 11:09:25 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/threadsafe.c: include required headers
Sun Dec 28 10:56:35 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/threadsafe.c:
- use getipnode* functions if available
- use getaddrinfo instead of getservbyname_r if not available
(to fix thread-safe problems under Mac OS X)
Sat Dec 27 10:57:07 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: add dependency
* doc/userguide.sgml: fix link for local files
Sat Dec 27 10:39:59 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: small fixes
* misc/test-dist.sh: use packaged files
Fri Dec 26 22:15:11 EST 2003 JK Lowden <[email protected]>
* doc/Makefile.am doc/userguide.sgml
- generate tables from api_status.doc, and link to reference manual.
Fri Dec 26 19:09:41 CET 2003 Frediano Ziglio <[email protected]>
* .cvsignore: ignore generated test log
* Makefile.am doc/Makefile.am: fix problem with RH9
* src/apps/tsql.c: comment
* src/ctlib/cs.c src/ctlib/ct.c src/dblib/bcp.c:
* src/dblib/dblib.c:
- updates for 64bit ints support
* src/odbc/unittests/common.c: make odbc_setenv no static
Wed Dec 24 06:19:50 EST 2003 JK Lowden <[email protected]>
* Makefile.am doc/Makefile.am s/RM/rm/g because RM not always defined.
Wed Dec 24 10:01:22 CET 2003 Frediano Ziglio <[email protected]>
* acinclude.m4 configure.in: use AC_HELP_STRING
Tue Dec 23 20:08:55 EST 2003 JK Lowden <[email protected]>
* TODO things to fix before the release.
Tue Dec 23 22:13:35 CET 2003 Frediano Ziglio <[email protected]>
* configure.in src/odbc/unittests/common.c:
* src/odbc/unittests/common.h:
- fix portability issue in odbc unittests
* doc/Makefile.am: update
* misc/test-dist.sh: enable all tests (works)
* src/tds/iconv.c: update and test for indirect conversion
Tue Dec 23 17:26:44 CET 2003 Frediano Ziglio <[email protected]>
* Makefile.am doc/Makefile.am:
- use cp instead of ln (distdir seem to have problems with links)
- moved some code from doc/Makefile.am to Makefile.am
- fix rpm build (it caused a wrong recursive remove)
* misc/test-dist.sh:
- disable make distcheck
* TODO: update
Mon Dec 22 15:36:53 EST 2003 JK Lowden <[email protected]>
* Makefile.am doc/Makefile.am
- new arrangement to install user guide and reference manual
* src/dblib/bcp.c src/tds/write.c
- no SYBEBBCI for bcp_batch(), changed null-testing
Mon Dec 22 21:06:31 CET 2003 Frediano Ziglio <[email protected]>
* tds.dox: do not document unit tests
* src/tds/iconv.c TODO:
- use UTF-8 for indirect conversion (more portable,
no endian problems)
- finish indirect conversions (need test)
Mon Dec 22 17:05:46 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: make fixes
* doc/txt2man: fix a possible core on utf8 systems
* include/Makefile.am: fix using make install without make all
Mon Dec 22 11:02:49 CET 2003 Frediano Ziglio <[email protected]>
* TODO: update
* Makefile.am doc/.cvsignore doc/Makefile.am:
- small updates
Sun Dec 21 09:02:51 CET 2003 Frediano Ziglio <[email protected]>
* Makefile.am doc/Makefile.am:
- do not build reference if doxygen is not installed
* src/dblib/dblib.c: comments
* src/dblib/unittests/bcp.c src/dblib/unittests/bcp.h:
- do not use multi-line literals
- remove nullable bits from test
* src/odbc/unittests/common.c: search .so first
Sat Dec 20 14:18:00 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/unittests/Makefile.am src/odbc/unittests/common.c:
* src/odbc/unittests/common.h src/odbc/unittests/connect.c:
- autoconfigure ODBC unittests
- make connect test work even using iODBC
Sat Dec 20 11:24:16 CET 2003 Frediano Ziglio <[email protected]>
* Makefile.am freetds.spec.in tds.dox doc/Makefile.am:
- do not tar reference / userguide
- install documentation using correct directory
- update RPM build due to directory change
* src/odbc/odbc.c: fix some issue with unixODBC
Sat Dec 20 00:24:43 CET 2003 Frediano Ziglio <[email protected]>
* src/ctlib/Makefile.am: version bump
* include/cspublic.h include/ctlib.h src/ctlib/ctutil.c:
- more Sybase binary compatibility (strutures)
- hidden some implementation details to applications
Sat Dec 20 00:07:54 CET 2003 Frediano Ziglio <[email protected]>
* include/Makefile.am: do not install private header
Fri Dec 19 11:28:53 CET 2003 Frediano Ziglio <[email protected]>
* include/cspublic.h: avoid constants change
* include/replacements.h include/tdsodbc.h: indent(1)
* src/dblib/Makefile.am: version bump
Fri Dec 19 10:53:46 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/Makefile.am: bump version info
Thu Dec 18 20:34:45 CET 2003 Frediano Ziglio <[email protected]>
* configure.in include/tdsodbc.h:
- remove a warning if iODBC is used
Thu Dec 18 14:36:33 EST 2003 JK Lowden <[email protected]>
* src/dblib/unittests/bcp.c enabled call to bcp_batch()
* src/tds/token.c tds_client_msg() does not mark session dead.
Thu Dec 18 11:20:53 EST 2003 JK Lowden <[email protected]>
* include/tds.h corrected is_fixed_type
* src/dblib/bcp.c rewrote _bcp_get_term_var, better logging
* src/dblib/dblib.c better destlen handling in dbconvert
* src/dblib/unittests/Makefile.am added bcp test
Wed Dec 17 23:12:19 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c: fixed some issues with iODBC
Tue Dec 16 17:30:38 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/util.c: fixed core enabling append log mode
Tue Dec 16 17:00:59 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/token.c: do not write time more and more
Tue Dec 16 12:03:00 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c: fix severe BUG in big-endian machines
* src/tds/iconv.c: fix core due to recent optimization
* src/tds/token.c: fix core logging
* src/tds/util.c: update doxygen comments
Tue Dec 16 02:37:31 EST 2003 JK Lowden <[email protected]>
* src/tds/read.c src/tds/token.c
- better logging, more robust goodread()
Mon Dec 15 13:54:57 EST 2003 JK Lowden <[email protected]>
* include/tds.h removed spurious trailing comma
Sun Dec 14 14:02:42 EST 2003 JK Lowden <[email protected]>
* doc/userguide.sgml
- Added ODBC background and troubleshooting help.
- Removed iodbc, unixodbc compiling instructions.
Sun Dec 14 16:07:25 CET 2003 Frediano Ziglio <[email protected]>
* include/tds.h: size optimization
Sat Dec 13 03:04:48 EST 2003 JK Lowden <[email protected]>
* doc/Makefile.am remove generated html before regenerating
* doc/api_status.txt ident string
* doc/userguide.sgml 100% nice HTML page names, plus markup fixup
Fri Dec 12 16:18:53 CET 2003 Frediano Ziglio <[email protected]>
* doc/api_status.txt src/odbc/odbc.c:
- SQLParamOptions and SQLCloseCursor
Fri Dec 12 15:33:14 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/token.c: check tds_process_default_tokens result
Fri Dec 12 11:42:51 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsiconv.h src/replacements/iconv.c:
- avoid problem with libc iconv version
Fri Dec 12 11:27:49 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsiconv.h src/replacements/iconv.c:
- do not include encoding.h (remove dependency and lot of data)
- support for UTF-8
- a lot of small optimizations
- some conversions fixes
Thu Dec 11 23:05:06 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/unittests/utf8_2.c: a bit more verbose
Thu Dec 11 12:24:56 CET 2003 Frediano Ziglio <[email protected]>
* Makefile.am: do not create an unneeded file
* src/ctlib/ct.c: column name from ct_describe must be null-terminated
* src/tds/unittests/utf8_2.c:
- fix problem for some iconv implementations
Wed Dec 10 15:35:50 CET 2003 Frediano Ziglio <[email protected]>
* src/ctlib/unittests/connect_fail.c:
* src/ctlib/unittests/t0001.c src/ctlib/unittests/t0005.c:
- typo
* src/tds/iconv.c: removed wrong warning
Wed Dec 10 12:20:24 CET 2003 Frediano Ziglio <[email protected]>
* src/ctlib/ct.c src/dblib/bcp.c src/odbc/error.c:
* src/server/login.c src/tds/iconv.c src/tds/write.c:
- fix some warnings under 64 bit platforms that can cause problems
Wed Dec 10 11:25:17 CET 2003 Frediano Ziglio <[email protected]>
* configure.in: fix for --disable-odbc option
Tue Dec 9 21:51:59 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: fixed "make distcheck"
* src/tds/read.c src/tds/write.c:
- used MSG_NOSIGNAL where available
Tue Dec 9 17:57:46 CET 2003 Frediano Ziglio <[email protected]>
* configure.in:
- enable threadsafe by default to remove some undefined problems
Tue Dec 9 11:49:19 EST 2003 JK Lowden <[email protected]>
* include/replacements.h add vsnprintf prototype
Tue Dec 9 14:39:20 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/odbc/sql2tds.c:
- fixed problem with Ruby and ODBC
Tue Dec 9 11:18:45 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsstring.h src/apps/freebcp.c src/odbc/native.c:
* src/odbc/odbc.c src/pool/config.c src/tds/config.c:
- remove some severe warnings
Mon Dec 8 12:03:22 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c: remove some warnings
Mon Dec 8 11:36:43 CET 2003 Frediano Ziglio <[email protected]>
* doc/userguide.sgml: type and some fix for DSN-less configuration
Mon Dec 8 02:30:24 EST 2003 JK Lowden <[email protected]>
* doc/Makefile.am doc/userguide.sgml doc/userguide.dsl.in
- Prepare UG for 0.62 release. Added ODBC chapter.
- Still needs integration with reference manual.
Sun Dec 7 14:19:12 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/descriptor.c: small optimization
* src/odbc/odbc.c src/odbc/sql2tds.c:
- comments and a workaround
* src/tds/login.c src/tds/query.c:
- let tds_quote_id accept -1 as length (zero terminated)
Sun Dec 7 02:32:19 PST 2003 Peter Deacon <[email protected]>
* include/tds.h src/odbc/descriptor.c src/odbc/odbc.c:
* src/tds/login.c src/tds/query.c:
- fixed unchecked memory allocation
- fixed wrong value for SQL_DESC_LOCAL_TYPE_NAME
- fixed setting SQL_ATTR_CURRENT_CATALOG failed
Sun Dec 7 01:09:42 EST 2003 JK Lowden <[email protected]>
* src/tds/numeric.c fixed tds_money_to_string: s/0.%02f/%.02f/
Sat Dec 6 23:50:20 CET 2003 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/query.c:
- make tds_skip_comment static
- fix parsing of "... /*" and "/* ... */* ... */"
Sat Dec 6 13:08:36 PST 2003 Peter Deacon <[email protected]>
* include/tds.h src/tds/query.c src/odbc/odbc.c:
- fixed don't look for placeholders in comments
- bad assert numresults between prepare and exec
* src/tds/mem.c src/tds/token.c:
- disconnect on unknown marker
Sat Dec 6 17:35:31 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/unittests/genparams.c: improve
Sat Dec 6 14:43:10 CET 2003 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/convert.c src/tds/numeric.c:
* src/tds/query.c src/tds/token.c src/tds/unittests/convert.c:
- some optimization for money
- improve binary -> char conversions performance
* src/tds/unittests/dataread.c: test bif MONEY value
Sat Dec 6 11:55:42 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/convert.c src/tds/numeric.c:
* src/tds/unittests/dataread.c:
- fixed money rounding
- fixed conversion money -> char (only 2 decimal digits)
- improve test on money data
- use TDS_INT8 if available improving money -> char performance
Fri Dec 5 23:00:31 CET 2003 Frediano Ziglio <[email protected]>
* vms/config_h.vms vms/descrip_mms.template:
- applied Craig A. Berry patch (VMS update)
Fri Dec 5 15:23:48 EST 2003 JK Lowden <[email protected]>
* src/tds/numeric.c convert(money,char) to 2 decimal places
Thu Dec 04 23:27:09 CET 2003 Frediano Ziglio <[email protected]>
* freetds.conf: updated removing old configurations
Thu Dec 04 23:03:12 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/token.c: make "make check" happy even for Sybase
Thu Dec 04 12:05:10 CET 2003 Frediano Ziglio <[email protected]>
* src/dblib/unittests/t0016.c: fixed make distcheck
* src/tds/token.c: fix for raiserror statement
Wed Dec 03 11:41:45 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/query.c: support for emulated prepare under TDS 4.2
Wed Dec 03 11:01:46 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/config.c: remove libgen dependency
Wed Dec 03 10:34:12 CET 2003 Frediano Ziglio <[email protected]>
* configure.in src/odbc/Makefile.am:
- ODBC driver do not require ODBC DM library
* src/odbc/unittests/raiseerror.c: more verbose
Wed Dec 3 03:33:01 EST 2003 JK Lowden <[email protected]>
* doc/tsql.txt updated and clarified (I hope)
* doc/userguide.sgml applied Freddy's modified patch and more
* src/tds/config.c bad entries written to stderr
Wed Dec 03 08:12:49 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/Makefile.am src/tds/encodings.h:
* src/tds/sybase_character_sets.h:
* src/tds/sybase_character_sets.h.pl:
- fix make on snapshot
Tue Dec 02 18:40:08 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/character_sets.h src/tds/encodings.h:
- updated tables for ISO-2022-* charsets
Mon Dec 01 08:34:27 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/tables.sql src/odbc/Makefile.am:
- removed tables.sql
Sun Nov 30 14:23:10 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/unittests/.cvsignore src/odbc/unittests/Makefile.am:
* src/odbc/unittests/preperror.c(added):
- added a test from Nathaniel Talbott issue
* src/tds/token.c: fixed core
Sun Nov 30 13:42:05 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/Makefile.am src/tds/encodings.h:
- updated encodings.h
- added a charset target to make to update encodings.h
Sun Nov 30 13:00:17 CET 2003 Frediano Ziglio <[email protected]>
* include/cspublic.h include/tds.h src/ctlib/cs.c:
* src/ctlib/ct.c src/tds/convert.c src/tds/token.c:
- applied Alex Kiesel patch on UNI(VAR)CHAR
* src/odbc/odbc.c:
- assert statement is the current one on SQLMoreResults
* src/tds/character_sets.h: update
Sat Nov 29 22:04:10 EST 2003 JK Lowden <[email protected]>
* src/odbc/odbc.c
- applied 2-line patch from [email protected]
- Cf. 25 Nov 2003, "ODBC SQLExecute succeeds when it shouldn't"
Fri Nov 28 17:52:15 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: updated to 0.62 version
* include/tds.h src/tds/mem.c src/tds/query.c:
* src/tds/token.c:
- fix for Sybase and prepare using blobs
(emulate prepared statements)
Tue Nov 25 16:41:13 CET 2003 Frediano Ziglio <[email protected]>
* configure.in src/tds/login.c:
- enable TCP_NODELAY options in socket
Mon Nov 24 21:18:50 EST 2003 JK Lowden <[email protected]>
* configure.in provide --disable-odbc override, and minor edits.
Mon Nov 24 22:09:29 CET 2003 Frediano Ziglio <[email protected]>
* configure.in: better detect for ODBC
Mon Nov 24 20:57:18 CET 2003 Frediano Ziglio <[email protected]>
* include/tds.h src/tds/iconv.c:
- cleanup and comments
- small iconv fixes
Sun Nov 23 22:09:31 EST 2003 JK Lowden <[email protected]>
* src/tds/write.c s/eilseq/einval/
* src/tds/query.c fixed warning
Sun Nov 23 10:12:02 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/iconv.c src/tds/read.c:
- small fixes for iconv
Sun Nov 23 09:57:35 CET 2003 Frediano Ziglio <[email protected]>
* TODO src/tds/query.c:
- use iconv for input parameters
Sat Nov 22 17:59:36 EST 2003 JK Lowden <[email protected]>
* include/tds.h include/cspublic.h
* src/ctlib/cs.c src/ctlib/ct.c
* src/tds/convert.c src/tds/token.c
- SYBUNIVARCHAR handling
Sat Nov 22 17:49:12 EST 2003 JK Lowden <[email protected]>
* include/tdsiconv.h
* src/tds/iconv.c src/tds/login.c src/tds/query.c
* src/tds/read.c src/tds/write.c
- Add message suppression to TDSICONVINFO. utf_[12] unit tests now pass.
* src/server/login.c move tds_iconv() call out of assert.
Sat Nov 22 18:16:25 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/error.c src/odbc/odbc.c:
* src/odbc/odbc_checks.c src/odbc/odbc_util.c:
* src/odbc/prepare_query.c src/odbc/sql2tds.c:
- renamed henv/hdbc attributes to env/dbc
Sat Nov 22 17:32:29 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/read.c: reverse some BLOB handling
* src/tds/token.c:
- remove libgen.h dependency
- some fixes for ODBC
- some fixes for UTF-8 client
- do not core if dumping is enabled
* src/tds/unittests/common.c:
- do not force 512 as packet size
* src/tds/unittests/flags.c src/tds/unittests/utf8_1.c:
- make them work
* src/tds/util.c: print (null) on null strings
* src/tds/write.c: new style comment..
Sun Nov 16 19:09:13 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/query.c: reformatted to avoid warning in gcc
* src/tds/token.c:
- some fixes and comments
Sun Nov 16 02:56:40 EST 2003 JK Lowden <[email protected]>
* src/tds/iconv.c src/tds/query.c src/tds/read.c
* src/tds/token.c src/tds/util.c src/tds/write.c
- support partial UTF-8 characters in read_and_convert()
- distinguish between client and wire sizes in tds_get_data()
- better logging, support unsigned ints
* include/tds.h include/tdsiconv.h reindented
* src/ctlib/ct.c moved cursor status into sub-structure
Sat Nov 15 17:10:14 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/iconv.c src/tds/read.c src/tds/unittests/Makefile.am:
* src/tds/unittests/utf8_2.c(added):
- some fixes for iconv stuff
- added test for conversion from utf8
Sat Nov 15 10:37:58 CET 2003 Frediano Ziglio <[email protected]>
* doc/api_status.txt: added SQLFetchScroll
* src/tds/iconv.c: fixed for dblib problem
* src/odbc/odbc.c: rollback
Sat Nov 15 10:26:28 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/unittests/common.c src/tds/unittests/common.h:
* src/tds/unittests/utf8_1.c:
- continued UTF8 test
Thu Nov 13 15:58:38 EST 2003 JK Lowden <[email protected]>
* src/tds/read.c prepare read_and_convert for UTF-8
Thu Nov 13 14:09:00 EST 2003 JK Lowden <[email protected]>
* src/tds/read.c fix logging in tds_get_char_data()
* src/tds/token.c log return status of stored procedures
Thu Nov 13 08:46:23 EST 2003 JK Lowden <[email protected]>
- Applied Frediano's patch:
* src/odbc/Makefile.am src/odbc/convert_sql2string.c
* src/odbc/convert_sql2string.h src/odbc/convert_tds2sql.c
* src/odbc/odbc.c src/odbc/odbc_util.c src/odbc/odbc_util.h
* src/odbc/prepare_query.c src/odbc/sql2tds.c
* src/odbc/unittests/common.c src/odbc/unittests/genparams.c
* src/tds/query.c vms/odbc_driver_axp.opt win32/FreeTDS.def
- some fix for numeric parameters in ODBC
- some fix for SQL_C_DEFAULT in ODBC
- added SQLFetchScroll
- cleanup
- do not use convert_sql2string.[ch]
* src/odbc/checkexport.sh some fixes for libtool update
Wed Nov 12 23:45:02 PST 2003 Peter Deacon <[email protected]>
* src/odbc/odbc.c: commit/rollback with pending results
Sun Nov 9 08:48:46 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/error.c src/odbc/odbc.c:
- remove attr_ prefix from all attributes
Sat Nov 8 18:51:21 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/convert_sql2string.c src/odbc/convert_tds2sql.c:
* src/odbc/sql2tds.c:
- some fix for numeric parameters
* src/odbc/odbc.c: indent(1)
* src/odbc/odbc_util.c: note
* src/odbc/unittests/common.c: indent(1)
* src/odbc/unittests/date.c src/odbc/unittests/funccall.c:
* src/odbc/unittests/lang_error.c:
* src/odbc/unittests/norowset.c src/odbc/unittests/params.c:
* src/odbc/unittests/print.c src/odbc/unittests/raiseerror.c:
* src/odbc/unittests/t0001.c src/odbc/unittests/t0002.c:
- reuse some code
* src/odbc/unittests/Makefile.am:
* src/odbc/unittests/genparams.c(added):
- added test for parameters
* src/tds/token.c: applied Bill Thompson patch
Thu Nov 6 12:19:15 EST 2003 JK Lowden <[email protected]>
- Applied Frediano's patches.
* src/odbc/connectparams.c fix FILENAME_MAX define under HP/UX
* src/odbc/odbc.c src/odbc/unittests/tables.c
- fixed SQLTables
* src/tds/query.c added a note
Wed Nov 5 12:19:23 EST 2003 JK Lowden <[email protected]>
- Applied Frediano's patch:
* src/odbc/connectparams.h src/odbc/connectparams.c
* src/odbc/convert_sql2string.c
* src/odbc/convert_tds2sql.c src/odbc/odbc.c
* src/odbc/odbc_checks.h src/odbc/odbc_checks.c
* src/odbc/odbc_util.c src/odbc/prepare_query.c
* src/odbc/unittests/putdata.c
- fixed SQL_DESC_ROWS_PROCESSED_PTR handling (thanks to Alex Hornby)
- comment style updates
- return correct result converting to string
- more internal checks
- removed some TODO
- fixed wrong error setting concise type
- fixed problem with ODBC3 types in prepared code (thanks to Steven Reynolds)
Tue Nov 4 13:42:08 EST 2003 JK Lowden <[email protected]>
- Applied Frediano's patch:
* include/tds.h src/tds/token.c
- support for newer mssql compute clauses
* include/tdsodbc.h
* src/odbc/odbc.c
* src/odbc/odbc_checks.c
* src/odbc/odbc_util.h
* src/odbc/odbc_util.c
- fixed type test and problems related
- extra structures checks on functions exit
- fix problem with macro (thanks to David Fraser)
* TODO updated
Tue Nov 4 03:03:38 EST 2003 JK Lowden <[email protected]>
* doc/userguide.sgml Updated for 0.62, except for ODBC
Mon Nov 3 11:35:02 EST 2003 JK Lowden <[email protected]>
- Applied Frediano's patch:
* include/tds.h src/tds/query.c
- add sql_submit_execdirect procedure
- cleanup
- indent(1)
- return TDS_FAIL if tds_flush_packet fail
- support mssql7 using cursors
* include/tdsodbc.h
* src/odbc/odbc.c src/odbc/odbc_checks.c src/odbc/odbc_util.c
* src/odbc/prepare_query.c src/odbc/sql2tds.c src/odbc/sql2tds.h
- fix SQLPutData using prepared statements
* src/tds/mem.c
- small optimization,
- remove some buffer overflows (added very recently)
Mon Nov 3 00:03:37 EST 2003 JK Lowden <[email protected]>
* doc/userguide.sgml Updated from beginning to iODBC.
Sun Nov 2 11:58:07 CET 2003 Frediano Ziglio <[email protected]>
* configure.in include/tdsodbc.h src/odbc/odbc.c:
* src/odbc/odbc_util.h src/odbc/prepare_query.h:
* src/odbc/unittests/Makefile.am:
- applied patch for NO-DM from David Fraser
Sun Nov 2 11:51:17 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/config.c: fix reverse lookup problems
Sat Nov 1 17:45:03 EST 2003 JK Lowden <[email protected]>
* include/cspublic.h include/des.h
* include/sybdb.h include/tds.h
* src/apps/freebcp.c
* src/ctlib/cs.c src/ctlib/ct.c
* src/ctlib/unittests/cs_config.c src/ctlib/unittests/lang_ct_param.c
* src/dblib/bcp.c src/dblib/dblib.c src/dblib/unittests/t0016.c
* src/tds/challenge.c src/tds/config.c src/tds/des.c
* src/tds/mem.c src/tds/query.c src/tds/token.c
* src/tds/unittests/flags.c
- ct-lib cursors! Bill Thompson's 4043-line patch.
- Some updates to the patch remain pending.
* TODO removed ct-lib cursor entry.
Fri Oct 31 13:49:02 EST 2003 JK Lowden <[email protected]>
* src/apps/freebcp.c fix line 128
Wed Oct 29 10:18:29 EST 2003 JK Lowden <[email protected]>
* src/dblib/bcp.c
- s/__func__/__FILE__/ for now
- fix a memory violation in freebcp
* src/odbc/odbc.c
- --enable-developing not required for prepared statements
Tue Oct 28 19:28:14 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/query.c src/tds/token.c: be consistent
Mon Oct 27 03:54:57 EST 2003 JK Lowden <[email protected]>
* src/dblib/bcp.c s/__FUNCTION__/__func__/
Sat Oct 25 05:06:58 EDT 2003 JK Lowden <[email protected]>
* configure.in
- added --disable-libiconv,
- enable-threadsafe [default yes] => disable-threadsafe
- enable-debug [default yes] => disable-debug
Sat Oct 25 00:57:00 EDT 2003 JK Lowden <[email protected]>
* TODO src/apps/freebcp.c src/dblib/bcp.c
- support \\, \t, \r, and \n terminators. Parse but don't honor \0.
* src/tds/iconv.c
- make tds_iconv_fread understand zero-length data fields.
Fri Oct 24 12:05:38 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc_util.c src/odbc/sql2tds.c:
- fixed binding
Thu Oct 23 12:23:37 CET 2003 Frediano Ziglio <[email protected]>
* TODO: updates
* acinclude.m4: fix wrong detection on Mac OS X
* include/tds.h include/tds_sysdep_private.h:
* include/tds_sysdep_public.h.in:
* src/odbc/odbc.c src/pool/user.c:
* src/server/login.c src/tds/convert.c:
* src/tds/read.c win32/tds_sysdep_public.h:
- remove some warnings compiled under Forte
* src/tds/iconv.c:
- update for no-GNU iconv
Tue Oct 21 22:50:37 PDT 2003 Peter Deacon <[email protected]>
* src/tds/mem.c: more native sqlstate mappings
* win32/tds_sysdep_public.h: fix win32 msvc6 project error
Tue Oct 21 21:29:07 EDT 2003 JK Lowden <[email protected]>
* include/tds.h include/tdsiconv.h
* src/odbc/odbc.c src/server/login.c
* src/tds/iconv.c src/tds/login.c src/tds/mem.c
* src/tds/numeric.c src/tds/query.c src/tds/read.c
* src/tds/token.c src/tds/write.c
- Frediano's 1038-line patch from two days ago.
- Convert TDSICONVINFO *iconv_info to **iconv_info, and
- begin handling per-column encodings.
Sun Oct 19 13:00:14 EDT 2003 JK Lowden <[email protected]>
* src/odbc/unittests/Makefile.am
* src/odbc/unittests/common.c
* src/odbc/unittests/common.h
- Accepted patch from John Anderson <[email protected]>
- should close cursors on SQLEndTran
* src/odbc/unittests/transaction.c added
Sat Oct 18 23:36:42 EDT 2003 JK Lowden <[email protected]>
* samples/test.pl permit command-line connection arguments
* src/tds/encodings.pl src/tds/encodings.h
- explicitly number charset enumerations
Sat Oct 18 18:44:31 EDT 2003 JK Lowden <[email protected]>
* doc/userguide.sgml minor copyedits
* src/ctlib/ct.c fix bug sqsh trips on when no rows are returned.
- patch from Alex Kiesel <[email protected]>
- see ML 18 Oct 2003 14:51:24 +0200
Thu Oct 16 23:02:05 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/encodings.h src/tds/encodings.pl:
- define constant for every canonic charset
Wed Oct 08 21:23:03 CET 2003 Frediano Ziglio <[email protected]>
* configure.in:
- test for wchar.h (some systems define EILSEQ here)
- remove -ansi flag (enabling some required definitions)
* include/tdsiconv.h: define EILSEQ if not like GNU-iconv
* src/tds/read.c src/tds/token.c src/tds/write.c:
- explicitly treat tds->iconv_info like an array
Tue Oct 07 22:05:48 CET 2003 Frediano Ziglio <[email protected]>
* configure.in: avoid wrong dependency under Linux
* freetds.spec.in doc/Makefile.am: fixes for RH9
* src/odbc/odbc.c: remove warning, cleanup
Sun Oct 5 23:18:46 EDT 2003 JK Lowden <[email protected]>
* INSTALL.CVS added information about CVS tarballs.
Sun Oct 05 18:41:22 CET 2003 Frediano Ziglio <[email protected]>
* configure.in:
- test for other socket functions
- add "-ansi -Wno-long-long" if gcc for more warnings
* include/tds.h: small fix for C98 compiler
* src/apps/Makefile.am: try to fix Mac OS X problem
* src/odbc/odbc_util.c src/odbc/odbc_util.h:
* src/odbc/prepare_query.c src/odbc/sql2tds.c:
- merged patch from ML for GUID parameters
- start supporting SQL_C_DEFAULT
* src/tds/login.c: fix possible 64 bit problem
* src/tds/token.c: fix "undefined strdup" under RH9
* src/tds/unittests/.cvsignore src/tds/unittests/Makefile.am:
* src/tds/unittests/utf8_1.c(added):
- added first utf8 test (not finished)
Tue Sep 30 21:21:10 CET 2003 Frediano Ziglio <[email protected]>
* doc/Makefile.am: trick for "make distcheck"
Tue Sep 30 21:04:48 CET 2003 Frediano Ziglio <[email protected]>
* configure.in include/tds.h src/odbc/Makefile.am:
* src/odbc/unittests/Makefile.am:
- fix problem with odbc autodetect
* src/tds/config.c src/tds/mem.c src/tds/token.c:
* src/tds/unittests/convert.c:
- indent(1)
Tue Sep 30 17:01:57 CET 2003 Frediano Ziglio <[email protected]>
* configure.in src/tds/config.c:
- use inet_ntoa_r if available
* src/tds/iconv.c: fix for SWAPBYTE flag
* src/tds/mem.c: fix bus error, unaligned data
* src/tds/threadsafe.c: some fixes
* src/tds/token.c: remove warning compiled under big endian machine
* src/tds/unittests/convert.c: fill precision/scale members
Sun Sep 28 16:55:58 PDT 2003 Peter Deacon <[email protected]>
* src/tds/config.c src/tds/login.c src/tds/token.c:
* src/odbc/odbc.c include/tds.h src/tds/read.c:
- fix unchecked memory allocation
- replace bad assert
- add missing TDS_IS_SOCKET_INVALID macro
Fri Sep 25 23:10:36 CET 2003 Frediano Ziglio <[email protected]>
* TODO: update from ML and other
* src/apps/tsql.c: fix problem reading system charset
* include/tds.h src/ctlib/ct.c src/dblib/bcp.c src/dblib/dblib.c:
* src/odbc/odbc.c src/pool/member.c src/replacements/iconv.c:
* src/tds/iconv.c src/tds/login.c src/tds/query.c src/tds/token.c:
* src/tds/unittests/common.c src/tds/unittests/dataread.c:
* src/tds/unittests/flags.c src/tds/unittests/t0002.c:
* src/tds/unittests/t0003.c src/tds/unittests/t0004.c:
* src/tds/unittests/t0005.c src/tds/unittests/t0006.c:
- remove params from tds_submit_query
- added tds_submit_query_params
Wed Sep 24 22:26:32 CET 2003 Frediano Ziglio <[email protected]>
* Makefile.am doc/Makefile.am:
- fix some issue related to make distcheck
Wed Sep 24 21:14:43 CET 2003 Frediano Ziglio <[email protected]>
* configure.in src/odbc/Makefile.am:
- try to fix ODBC library use (iODBC and unixODBC should now
work ok without strange configurations)
Wed Sep 24 13:35:49 EDT 2003 JK Lowden <[email protected]>
* include/tds.h src/odbc/odbc.c src/tds/login.c
- Add more ODBC2 support to SQLSetStmtAttr and
- change longquery support.
Tue Sep 23 20:54:59 CET 2003 Frediano Ziglio <[email protected]>
* include/tds.h include/tds_sysdep_public.h.in:
* src/pool/user.c src/server/login.c:
* src/tds/login.c src/tds/mem.c:
* src/tds/read.c src/tds/util.c:
- fix some issues related to SOCKET declaration on windows
Tue Sep 23 13:37:28 EDT 2003 JK Lowden <[email protected]>
* src/odbc/odbc.c fix-ups to previous patch for SQLSetStmtAttr.
Tue Sep 23 11:29:22 EDT 2003 JK Lowden <[email protected]>
* include/tdsodbc.h src/odbc/odbc.c
- Applied patch by Frediano from ML today.
- Adds ODBC2 support to SQLSetStmtAttr.
Tue Sep 23 01:03:12 PDT 2003 Peter Deacon <[email protected]>
* src/odbc/odbc.c src/tds/mem.c src/tds/query.c
* src/tds/read.c src/tds/token.c
- add SQL_ATTR_QUERY_TIMEOUT support on statement handle
- check cancel return codes
Mon Sep 22 22:07:04 CET 2003 Frediano Ziglio <[email protected]>
* win32/msvc6/iconv_replacement.c(added):
* win32/config.h win32/dev-cpp/FreeTDS.dev:
* win32/dev-cpp/Makefile.win win32/msvc6/FreeTDS.dsp:
* win32/msvc6/Makefile.am:
- updated win32 compile (odbc)
* configure.in: small update
* include/tdsodbc.h src/odbc/convert_sql2string.c:
- fix for MingW header bug causing error compiling
* src/odbc/descriptor.c src/odbc/odbc_util.c:
* src/tds/convert.c src/tds/login.c:
- remove some warnings
* src/tds/config.c: assure correct structure initilization
* src/tds/query.c: fix problem with sp_prepare and mssql7
Sun Sep 21 20:34:21 CET 2003 Frediano Ziglio <[email protected]>
* src/ctlib/ct.c src/dblib/bcp.c src/dblib/dblib.c:
* src/dblib/rpc.c src/odbc/odbc.c src/pool/stream.c:
* src/server/server.c src/server/unittest.c:
* src/tds/query.c src/tds/token.c:
- set always correctly column_namelen
- convert parameter name in query.c
- use NULL instead of '' for sp_prepare parameter definition
Fri Sep 19 10:53:41 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c: free dynamic on error preparing
* src/tds/query.c: fix prepared using TDS7+
* src/tds/token.c: do not save garbage as prepared id (TDS7+)
Fri Sep 19 08:15:31 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/iconv.c: revert, wrong type constant
Fri Sep 19 08:10:05 CET 2003 Frediano Ziglio <[email protected]>
* src/tds/encodings.h src/tds/encodings.pl:
- remove empty charset
Thu Sep 18 16:17:57 EDT 2003 JK Lowden <[email protected]>
* src/tds/iconv.c
- small edits, added tds_iconv_info_close utility function
* src/tds/encodings.h src/tds/encodings.pl
- cannot look up charset "646" properly
- attempted to fix off-by-one in src/tds/encodings.h
- but ran out of time.
Thu Sep 18 11:26:59 EDT 2003 nsc <[email protected]>
* src/replacements/vasprintf.c
- Fix off-by-one error in vsnprintf-based vasprintf() replacement.
Wed Sep 17 21:29:21 PDT 2003 Peter Deacon <[email protected]>
* src/tds/mem.c: added sqlstate mappings
* src/replacements/iconv.c: fix charset selection
Wed Sep 17 09:22:31 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c:
- fix memory leak
- return SQL_SUCCESS_WITH_INFO on 01S02 (Option value changed)
* src/odbc/unittests/type.c: improve
* include/tdsiconv.h:
* include/tds.h src/tds/encodings.h src/tds/encodings.pl:
* src/tds/iconv.c src/tds/login.c src/tds/mem.c:
* src/tds/query.c src/tds/token.c:
- use UTF8 as one of required charset (to fix some problems)
- fix many issues in query.c related to iconv stuff
- more compatibility for strange iconv implementation (big endian)
- use memcpy for same charset conversions
- use nearest conversion for Sybase
Thu Sep 11 16:50:31 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/error.c src/odbc/odbc.c src/odbc/odbc_checks.c:
* win32/msvc6/FreeTDS.dsp:
- applied Peter Deacon patch
Tue Sep 9 14:00:57 EDT 2003 JK Lowden <[email protected]>
* doc/htdoc/contrib.html doc/htdoc/faq.html
- removed references to 'book1.html'
Thu Sep 04 10:56:40 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/unittests/type.c src/tds/unittests/t0003.c:
- remove warnings
Wed Sep 03 20:55:10 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/connectparams.c src/odbc/connectparams.h:
* src/odbc/convert_sql2string.c src/odbc/convert_sql2string.h:
* src/odbc/convert_tds2sql.c src/odbc/odbc.c:
* src/odbc/odbc_checks.c src/odbc/odbc_util.c:
* src/odbc/odbc_util.h src/odbc/sql2tds.c:
- some name normalization
- more work on types
- cleanup
* src/odbc/unittests/Makefile.am src/odbc/unittests/type.c(added):
- test for types
Mon Sep 01 11:59:16 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c:
- applied Peter Deacon patch on transaction
Sun Aug 31 16:37:57 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c: cleanup and small updates
Sun Aug 31 16:22:03 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/odbc.c:
- more work on SQLSetStmtAttr
Sat Aug 30 19:53:08 CET 2003 Frediano Ziglio <[email protected]>
* TODO: updated
* src/odbc/odbc.c: small fixes
Sat Aug 30 19:10:14 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/odbc.c src/odbc/odbc_checks.c:
- continue merging Steve Murphree patch
- SQLGetCursorName/SQLSetCursorName
- SQLSetStmtAttr (with --enable-developing swicth)
- fix compilation warning if TDS_NO_DM is defined
Sat Aug 30 15:31:28 CET 2003 Frediano Ziglio <[email protected]>
* doc/api_status.txt: updated
* include/tdsodbc.h src/odbc/descriptor.c src/odbc/odbc.c:
- implemented SQLCopyDesc
- applied partially Alex Hornby patch
Sat Aug 30 15:31:28 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c vms/odbc_driver_axp.opt win32/FreeTDS.def:
- SQLColAttribute
Sat Aug 30 15:00:42 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/odbc/odbc_checks.c src/odbc/odbc_util.c:
* src/odbc/prepare_query.c src/odbc/sql2tds.c:
- some fixes for sql_desc_type and sql_desc_concise_type
Sat Aug 30 12:03:48 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/Makefile.am src/odbc/odbc.c:
* src/odbc/odbc_checks.c(added) src/odbc/odbc_checks.h(added):
- add some deep check (using --enable-extra-checks)
Fri Aug 29 22:35:39 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/odbc.c src/odbc/odbc_util.c:
* src/odbc/odbc_util.h src/odbc/prepare_query.c:
* src/odbc/sql2tds.c src/odbc/sql2tds.h src/odbc/unittests/funccall.c:
- remove _sql_param_info structure and update cascading
- remove buffer overflow compiling without --enable-developing and
using SQLPutData
Fri Aug 29 17:46:43 CET 2003 Frediano Ziglio <[email protected]>
* include/tdsodbc.h src/odbc/odbc.c src/odbc/odbc_util.c:
* src/odbc/prepare_query.c src/odbc/sql2tds.c:
- added and use sql_desc_indicator_ptr in parameters
Fri Aug 29 17:06:11 CET 2003 Frediano Ziglio <[email protected]>
* src/odbc/odbc.c src/odbc/unittests/Makefile.am:
* src/odbc/unittests/getdata.c(added):
- fix a core getting text with SQLGetData