зеркало из https://github.com/mozilla/gecko-dev.git
Debugging support -- if we get an SQL error, show the SQL command that failed.
This commit is contained in:
Родитель
4980b2afad
Коммит
a729e91e6e
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче