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