###User Defined Function###
_SQLite_QueryReset

###Description###
Reset a _SQLite_Query() based query

###Syntax###
#include <SQLite.au3>
_SQLite_QueryReset ( $hQuery )


###Parameters###
@@ParamTable@@
$hQuery
	Query handle generated by <a href="SQLite_Query.htm">SQLite_Query()</a>
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	$SQLITE_OK.
Failure:	a value that can be compared against $SQLITE_* constants.
@error:	-1 - SQLite reported an error (Check Return value)
	1 - Error calling SQLite API 'sqlite3_reset'
	2 - Call prevented by SafeMode
@@End@@


###Remarks###
This will reset an unlinalized query so that the resulting rowset can be forward scanned again.


###Related###
_SQLite_Query, _SQLite_QueryFinalize


###Example###
@@IncludeExample@@
