Function:
Runs a query on the database without storing the result. This is useful for query which do not return a result set, like delete or insert queries. Note that although DBExecute doesn't store the result, it still needs a recordset. This is because it needs to know to which database the query must be sent.
Syntax:
DBExecute <Name of the recordset> "<SQL Query>"
Example:
DBExecute myRecordset "DELETE FROM Users"