Debug message fix in DB.rollbackTransaction()

This commit is contained in:
Dan Stillman 2006-08-26 08:54:31 +00:00
parent 3d6aa4b6ab
commit 1ac0c8e9a3

View file

@ -294,7 +294,7 @@ Scholar.DB = new function(){
catch(e){
var dberr = (db.lastErrorString!='not an error')
? ' [ERROR: ' + db.lastErrorString + ']' : '';
throw(e + ' [QUERY: ' + sql + ']' + dberr);
throw(e + dberr);
}
}
}