Function SQLExecute Returns Variant
Call: | Get SQLExecute to VariantVariable |
Call SQLExecute to execute a prepared SQL query.
Call the Procedure with the same name, SQLExecute, to use it without a result set.
String[][] aResults // Prepare the query Send SQLPrepare of ghoSQLExecutor @SQL"SELECT Name, City, Zip FROM Customer" // Test for errors If (not(Err)) Begin // Fetch the results into aResults Get SQLExecute of ghoSQLExecutor to aResults EndSee Also