]> git.sven.stormbind.net Git - sven/mysqltcl.git/blob - ChangeLog
Imported Upstream version 3.052
[sven/mysqltcl.git] / ChangeLog
1 Release 3.052
2 -- fix multiresult bug (column number)  (patch from Thikrallah I.Shreah)
3 Release 3.051
4 -- add connection option -reconnect (patch from david cluytens)
5 Release 3.05
6 -- applied path from Björn König to support compilation with mysql3.20 (with help of #if)
7 -- some addaption and bug fixes for mysql 5 for handling mutiple result queries. In case of mustiple statement mysql::exec return a list of results.
8 Release 3.04
9 -- bug fix for mysql::state (check for argument lenght). Thanks to Snyper for bug fix
10 Release 3.03
11 -- patch for file mysqltcl.c to adapt mysql column comands for mysql5 was applied. This accept 
12 new columns  types: newdecimal, bit and geometry. Thanks to Joerg Mehring.
13 Release 3.02
14 -- bug in mysql::map and mysql::recieve removed (occurs only for one column evalated in global context)
15 -- TEA upgrated
16 Release 3.01
17 -- bug in mysql::state then no proper handle fixed
18 -- bug in mysql::nextresult fixed
19 -- bug in man format doc fixed
20 -- new command mysql::encoding
21 -- new ssl connection options -sslkey -sslcert -sslca -sslcapath -sslciphers using of mysql_ssl_set
22 -- new command option mysq::info state
23 -- removed c-header installation section from Makefile.in
24 Release 3.00
25 -- all comands are defined in ::mysql namespace 
26 -- commands are renamed after pattern mysqlconnect mysql::connect
27 -- needs mysql 4.1 or higher
28 -- mysqlnext was renamed to mysql::fetch
29 -- new commands in mysql namespace: autocommit, commit, rollback, nextresult, moreresult, warningcoumt, isnull, newnull, setserveroption, shutdown
30 -- new connection options: -multistatement, -multiresult, -localfiles, -foundrows, -interactive
31 -- special null handling. The DB null is returned as new special Tcl type
32 -- man pages defined with tcllib doctools
33 Release 2.51
34 -- new command mysqlreceive that use mysql_use_result and do not cache result on client machine
35 Release 2.50
36 -- bug in handle managment by subinterpreters was removed be refactoring
37 Release 2.41
38 -- Remove email from Tobias Rizau on his desire (not more up to date)
39 -- conditional compiling dependent on mysql version causing ignore mysql 3.23.49 bug
40 -- small source refactoring for hide same compiler warnings
41 -- remove typos and out of date information from README file
42 Release 2.40
43 -- mysqltcl is now thread safe. The hashtable is hold separated for each thread
44 Release 2.31
45 -- bug in mysqlescape $handle $string fixed (Thanks to Olav Vitters)
46 Release 2.30
47 -- new connection options -ssl -odbc -noschema -compress
48 -- mysqlescape can take also handle as argument to use mysql_real_escape_string and respect character setting
49 -- new command mysqlbaseinfo -connectparameters | -clientversion that return all suported connect parameters or version of client C-API library
50 -- new command mysqlping for checking and refresh of connection
51 -- new command mysqlchangeuser for change user and database
52 Release 2.20
53 -- mysqlconnect was extended with option -encoding. Similar behavior to fconfigure. (initial patch written by Alexander Schoepe) The Version is not full compatible with oldier version. The differences are be reading date from mysql. Now the date are converted from External to Utf. See documentation for more information.
54 Release 2.14
55 -- configuration has new future for static linking with mysqlclient library
56 Release 2.12
57 -- refactoring (options for GetIndexFromObject are defined localy like in Tcl-core)
58 -- removing unused variables
59 -- some casts to avoid warnings messages
60 -- bug in reading options from my.cnf was removed (It have not work earlier)
61 -- use Tcl_Preserve and Tcl_Release instead of internal reference count
62 Release 2.11
63 -- memory leak removed
64 Release 2.1
65 -- new commands mysqlquerry mysqlendquerry
66 -- refactoring
67 Release 2.0rc14
68 -- using mysql_option to read option group mysqltcl from my.cnf file
69
70 Release 2.0
71 -- unlimitet number of connections 
72 -- Support of UNI-coded strings (All Stings are converted 
73    to external representation before sending to database) 
74 -- thread safe ready (no tested, need to use Tcl_LockMutex by using global 
75    variables not implementet yet) 
76 -- Rewritten all the commands using the Tcl_Obj interface
77 -- The handles are full-featured Tcl objects, so that they're not converted
78    anymore to and from strings every time a command is called
79 -- Improved argument checking
80 -- Mysqltcl is now a Tcl package, loadable with 'package require'
81 -- Added mysqlescape, for support to binary data.
82 -- Mysqlstate has a syntax in accord with other commands (handle first)
83    *** POTENTIAL INCOMPATIBILITY ***
84 -- Added -db -port -socket options to mysqlconnect.
85 -- Mysqlconnect needs -host to specify the optional hostname
86    *** POTENTIAL INCOMPATIBILITY ***
87 -- Added -list and -flatlist options to mysqlselect
88 -- Mysqlstatus(code) is set to mysql error code on server error
89 -- Mysql 3.22 is needed
90 -- Removed unneeded mysql field from MysqlTclHandle struct
91
92 Release 1.53
93 -- Added all(?) MySQL types to the mysqlcol command (however, it would 
94    recommend using the "SHOW COLUMNS..." command instead
95 -- Updated the documentation. Changed som mysql back to msql...
96
97 Release 1.52
98 -- Support for dynamic libraries
99 -- Added possibility to set user and password at connection time
100 -- Changed all msql to mysql in the man-page
101
102 Release 1.51
103 -- Support for Tcl/Tk 8.0 all older support was removed
104 -- The files were restructured and the makefile rewritten