CLASS:

 

 

 

 

 

 

 

 

DESCRIPTION:

 

 

 

Represents an object that executes command.

 

 

 

 

 

SYNTAX:

 

 

 

[<oRef> =] new ADOCommand()

 

 

 

 

 

 

 

PROPERTY:

DEFAULT:

DESCRIPTION:

 

 

baseClassName

ADOCOMMAND

Identifies the object as an instance of the ADOCommand class 

 

 

className

ADOCOMMAND

Identifies the object as an instance of a custom class. When no custom class exists, defaults to baseClassName

 

 

name

Empty string

Indicates the name of the command.

 

 

parent

null

Container form or report 

 

 

commandString

Empty string

SQL statement, or a stored procedure call.

 

 

commandStream

null

A reference to the ADOStream object that contains a query to be executed.

 

 

commandTimeout

30

In seconds, how long to wait while executing a command before terminating the command and issuing and error.

 

 

commandType

0 - Unknown

Command type to be executed.

 

 

database

null

A reference to the ADODatabase object to which the object is assigned.

 

 

databaseName

Empty string 

Database alias name to which the object is assigned.

 

 

dialect

Empty string 

GUID that represents the dialect of the command string.

 

 

executeOptions

0 - Unspecified

Available options that can be used to execute command.

 

 

handle

0

ADO statement handle.

 

 

params

Object

A reference to an array that contains the ADOParameter objects.

 

 

prepared

false

Whether to save a compiled version of a command before execution.

 

 

properties

AssocArray

A reference to Associative array that contains the dynamic properties.

 

 

state

0 - Closed

Enum that indicates the state object.

 

 

outputStream

null

A reference to the ADOStream object that contains the result rows.

 

 

 

 

 

EVENT:

PARAMETERS:

DESCRIPTION:

 

 

onExecute

<result expL>

Event fired after a command is successfully executed  or execute is failed.

 

 

 

 

 

 

 

 

 

METHOD:

PARAMETERS:

DESCRIPTION:

 

 

execute

[<rowret expL>]

Executes the specified command.

 

 

cancel

 

Cancels execution of a pending, asynchronous method call.

 

 

 

 

 

 

 

 

 

 

 

DESCRIPTION: