
|
1-20 of 174 ASP Databases > ADO sites are shown.
|
|
The ADO Command object is used to submit and execute a specific (single) query against a database. The query can command a variety of actions, such as adding, creating, deleting, retrieving, or updating databases (record sets).
|
|
|
|
|
|
|
Identifies the Stream object containing the command details.
|
|
|
|
|
|
|
Sets or returns the string name of the Command object.
|
|
|
|
|
|
|
Sets or returns a boolean that determines whether or not parameter names should be passed to the provider.
|
|
|
|
|
|
|
Returns a long value describing if the Command object is open, closed or in the process of connecting, executing or retrieving.
|
|
|
|
|
|
|
The number of seconds to wait while attempting to execute a command, before cancelling the attempt and generating an error.
|
|
|
|
|
|
|
Sets or returns the CommandTypeEnum type of the Command object.
|
|
|
|
|
|
|
A collection of Property objects. Each Property object contains a provider-specific property.
|
|
|
|
|
|
|
Creates a new Parameter object.
|
|
|
|
|
|
|
Executes the query, SQL statement or stored procedure.
|
|
|
|
|
|
|
The ADO Connection object provides the means to obtain an open connection to a data source. Through this open connection, you can access and manipulate a database.
|
|
|
|
|
|
|
Sets the number of seconds to wait while attempting to create a connection before terminating the attempt and generating an error message.
|
|
|
|
|
|
|
Sets or returns a long value used to select between various cursor libraries accessible through the provider.
|
|
|
|
|
|
|
Sets or returns a string value that is the default name of the database available from the provider for a Connection object.
|
|
|
|
|
|
|
Sets or returns the transaction isolation level (the IsolationLevelEnum value) of a Connection object.
|
|
|
|
|
|
|
Sets or returns the provider access permission (the ConnectModeEnum value) for a Connection object.
|
|
|
|
|
|
|
Sets or returns the string value that is the provider name.
|
|
|
|
|
|
|
Returns a long value (the ObjectStateEnum value) describing if the connection is open or closed.
|
|
|
|
|
|
|
Saves any changes and ends the current transaction. It can also be set to automatically start a new transaction.
|
|
|
|
|
|
|
Cancels any changes that have occurred during the current transaction and then ends the transaction. It can also be set to automatically start a new transaction.
|
|
|
|
|
|