###User Defined Function###
_SQLite_QuerySingleRow

###Description###
Read out the first row of the result from the specified query.

###Syntax###
#include <SQLite.au3>
_SQLite_QuerySingleRow ( $hDB, $sSQL, ByRef $aRow )


###Parameters###
@@ParamTable@@
$hDB
	An open database, use -1 to use last opened database
$sSQL
	SQL statement to be executed
$aRow
	Passes out the amount of 'data' rows
@@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 <a href="_SQLite_Query.htm">_SQLite_Query()</a>
	2 - Call prevented by SafeMode
	3 - Error Calling <a href="_SQLite_FetchData.htm">_SQLite_FetchData()</a>
	4 - Error Calling <a href="_SQLite_QueryFinalize.htm">_SQLite_QueryFinalize()</a>
@@End@@


###Remarks###
None.


###Related###
_SQLite_Query


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