New version of mysq Tcl interface mysqltcl 2.1 is available
http://www.xdobry.de/mysqltcl
Changes:
1. New configuration based on tea2. I expect less problems for non Linux
platforms. (FreeBSD tests was successful)
2. New commands mysqlquery and mysqlendquery that allows to build
multiple nested queries on one sql connection. It makes mysqltcl function
equal to odbctcl and postgrestcl and help to build general db interface
wrappers as (nstcl)
example:
set handle [mysqlconnect]
set qhandle [mysqlquery $handle {select * from mytable}]
puts [mysqlnext $qhandle]
mysqlendquery $qhanlde
3. Version2.1 is full backwards compatible to 2.0
4. internal refactoring
5. internal handling of Tcl object was improved to avoid some seldom
dangling pointer errors. With version 2.0 was possible to access some
freed memory after (mysqlclose)
6. Windows binary is not available yet. (no compiler for this OS)
Artur Trzewik
[[Send Tcl/Tk announcements to tcl-an...@mitchell.org
Announcements archived at http://groups.yahoo.com/group/tcl_announce/
Send administrivia to tcl-announ...@mitchell.org
Tcl/Tk at http://tcl.tk/ ]]