###User Defined Function###
_SQLite_FetchNames

###Description###
Read out the Column names of a _SQLite_Query() based query

###Syntax###
#include <SQLite.au3>
_SQLite_FetchNames ( $hQuery, ByRef $aNames )


###Parameters###
@@ParamTable@@
$hQuery
	Query handle generated by <a href="SQLite_Query.htm">SQLite_Query()</a>
$aNames
	1 dimensional array containing the Column names
@@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_data_count'
	2 - Error calling SQLite API 'sqlite3_column_name16'
	3 - Call prevented by SafeMode
@@End@@


###Remarks###
None.


###Related###
_SQLite_Query


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