Debugging support -- if we get an SQL error, show the SQL command that failed.

This commit is contained in:
terry%netscape.com 1998-08-28 18:31:05 +00:00
Родитель 4980b2afad
Коммит a729e91e6e
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -59,8 +59,12 @@ proc DebugConnect {} {
proc SendSQL { str } {
global mysqlhandle
mysqlsel $mysqlhandle $str
# puts $str
global mysqlhandle errorInfo
if {[catch {mysqlsel $mysqlhandle $str} errmsg]} {
puts $str
error "$errmsg - $str" $errorInfo
}
return 0
}