Restore the statement.reset() in valueQuery() that I accidentally deleted in r216

This commit is contained in:
Dan Stillman 2006-06-16 22:17:46 +00:00
parent bfa25cae37
commit 32ce0da44a

View file

@ -112,7 +112,9 @@ Scholar.DB = new function(){
return false;
}
return _getTypedValue(statement, 0);
var value = _getTypedValue(statement, 0);
statement.reset();
return value;
}