This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Executes the query, SQL statement or procedure specified in the CommandText property of the Command object.
The results are stored in a new Recordset object if it is a row-returning query.
A closed Recordset object will be returned if it is not a row-returning query.
Syntax
ADODB_RecordSet = <ADODB_Command>.Execute ([lRecordsEffected] )
Returns
An optional RecordSet object
Parameters
Name |
Type |
Optional |
Meaning |
lRecordsEffected |
Variable |
Yes |
Optional. Returns the number of records affected by a query. For a row-returning query, use the RecordCount property of the Recordset object to count of how many records are in the object. |
Remarks
Restrictions
See also
Examples