forked from rails-sqlserver/tiny_tds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
105 lines (47 loc) · 2.64 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* 0.4.5 *
* Includes precompiled Windows binaries for FreeTDS 0.91rc2 & LibIconv. No precompiled OpenSSL yet for Windows to SQL Azure.
* Fixed symbolized unicode column names.
* Use same bigint ruby functions to return identity. Hopefully fixes #19.
* Release static libs for Windows.
* Change how :host/:port are implemented. Now sending "host:port" to :dataserver.
* 0.4.4 *
* New :host/:port connection options. Removes need for freetds.conf file.
* 0.4.3 *
* New Client#active? method to check for good connection. Always use this abstract method.
* Better SYBEWRIT "Write to SQL Server failed." error handling. New Client#dead? check.
* Azure tested using latest FreeTDS with submitted patch. https://gist.github.com/889190
* 0.4.2 *
* Iconv is a dep only when compiling locally. However, left in the ability to configure it for native gem installation but you must use --enable-iconv before using --with-iconv-dir=/some/dir
* Really fix what 0.4.1 was supposed to do, force SYBDBLIB compile.
* 0.4.1 *
* Undefine MSDBLIB in case others have explicitly compiled FreeTDS with "MS db-lib source compatibility: yes".
* 0.4.0 *
* Allow SYBEICONVI errors to pass thru so that bad data is converted to ? marks.
* Build native deps using MiniPortile [Luis Lavena]
* Allow Result#fields to be called before iterating over the results.
* Two new client helper methods, #sqlsent? and #canceled?. Possible to use these to determine current
state of the client and the need to use Result#cancel to stop processing active results. It is also
safe to call Result#cancel over and over again.
* Look for the syb headers only.
* 0.3.2 *
* Small changes while testing JRuby. Using options hash for connect vs many args.
* 0.3.1 *
* Fix bad gem build.
* 0.3.0 *
* Access stored procedure return codes.
* Make sure dead or not enabled connections are handled.
* Fix bad client after timeout & read from server errors.
* 0.2.3 *
* Do not use development ruby/version, but simple memoize an eval check on init to find out, for 1.8.6 reflection.
* 0.2.2 *
* Fixed failing test in Ruby 1.8.6. DateTime doesn't support fractional seconds greater than 59.
See: http://redmine.ruby-lang.org/issues/show/1490 [Erik Bryn]
* 0.2.1 *
* Compatibility with 32-bit systems. Better cross language testing. [Klaus Gundermann]
* 0.2.0 *
* Convert GUID's in a more compatible way. [Klaus Gundermann]
* Handle multiple result sets in command buffer or stored procs. [Ken Collins]
* Fixed some compiler warnings. [Erik Bryn]
* Avoid segfault related to smalldatetime conversion. [Erik Bryn]
* Properly encode column names in 1.9. [Erik Bryn]
* 0.1.0 Initial release!