Interested in improving this site? Please check the To Do page.

Back to SQLite Verbs

sqlite.resetQuery

Reset an SQLite query

Syntax

sqlite.resetQuery(queryID)

Params

queryID is the query ID returned by sqlite.compileQuery.

Returns

An SQLite result code.

Examples

result = sqlite.resetQuery(compiledQuery);

Notes

sqlite.resetQuery resets the query, still in memory, so when you execute your next sqlite.stepQuery, you start from the top once again.

See Also


Personal Tools