Restore the statement.reset() in valueQuery() that I accidentally deleted in r216
This commit is contained in:
parent
bfa25cae37
commit
32ce0da44a
1 changed files with 3 additions and 1 deletions
|
@ -112,7 +112,9 @@ Scholar.DB = new function(){
|
|||
return false;
|
||||
}
|
||||
|
||||
return _getTypedValue(statement, 0);
|
||||
var value = _getTypedValue(statement, 0);
|
||||
statement.reset();
|
||||
return value;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue