|
|
|
|
|
||||||
|
CLASS: |
|
|
|||||||
|
ADOStoredProc |
|
|
|||||||
|
|
|||||||||
|
DESCRIPTION: |
|
|
|||||||
|
Represents an object that describes a stored procedure and contains the resulting rowset. |
|
||||||||
|
|
|
||||||||
|
SYNTAX: |
|
|
|||||||
|
[<oRef> =] new ADOStoredProc() |
|
|
|||||||
|
|
|||||||||
|
|
|||||||||
|
PROPERTY: |
DEFAULT: |
DESCRIPTION: |
|
||||||
|
baseClassName |
ADOSTOREDPROC |
Identifies the object as an instance of the ADOStoredProc class |
|
||||||
|
className |
ADOSTOREDPROC |
Identifies the object as an instance of a custom class. When no custom class exists, defaults to baseClassName |
|
||||||
|
name |
Empty string |
The name of custom object |
|
||||||
|
parent |
null |
Container form or report |
|
||||||
|
false |
Whether the object is open and active or closed. |
|
|||||||
|
1 |
Number of result rows that are cached locally in memory. |
|
|||||||
|
30 |
In seconds, how long to wait while executing a command before terminating the command and issuing and error. |
|
|||||||
|
false |
Whether the data object is connected with the data source. |
|
|||||||
|
Empty string |
Connection statement that describes parameters used to establish a connection with data source. |
|
|||||||
|
0 - Client |
Location of the cursor service. |
|
|||||||
|
4 - Static |
Cursor type that can be used. |
|
|||||||
|
null |
A reference to the ADODatabase object to which the object is assigned. |
|
|||||||
|
Empty string |
Database alias name to which the object is assigned. |
|
|||||||
|
0 - Unspecified |
Available options that can be used to execute command. |
|
|||||||
|
0 - Unspecified |
Available options that can be used to fetched records. |
|
|||||||
|
0 |
ADO statement handle. |
|
|||||||
|
3 - Optimistic |
Lock type that will be placed on rows during editing. |
|
|||||||
|
0 |
Maximum number of result rows. |
|
|||||||
|
Object |
A reference to an array that contains the ADOParameter objects. |
|
|||||||
|
false |
Whether to save a compiled version of a command before execution. |
|
|||||||
|
Empty string |
Name of the stored procedure. |
|
|||||||
|
AssocArray |
A reference to Associative array that contains the dynamic properties. |
|
|||||||
|
Object |
A reference to the ADORowset object that contains the result rows. |
|
|||||||
|
0 - Closed |
Enum that indicates the state object. |
|
|||||||
|
|
|
|
|||||||
|
|
|
|
|||||||
|
EVENT: |
PARAMETERS: |
DESCRIPTION: |
|
||||||
|
|
Event fired when there’s an attempt to deactivate object; return value determines if the object is deactivated. |
|
|||||||
|
|
Event fired when attempting to open object; return value determines if object is opened. |
|
|||||||
|
|
Event fired after object is successfully closed. |
|
|||||||
|
|
Event fired after object is successfully opened. |
|
|||||||
|
<percent expN>,<type expN>,<status expN>,<msg expC> |
Event fired periodically during long-running data processing operations. |
|
|||||||
|
|
|
|
|||||||
|
|
|
||||||||
|
|
|
||||||||
|
METHOD: |
PARAMETERS: |
DESCRIPTION: |
|
||||||
|
|
Cancels execution of a pending, asynchronous method call. |
|
|||||||
|
|
Closes object. |
|
|||||||
|
|
Opens object. |
|
|||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
NOTE: if you get 'Invalid argument for value' OR 'Invalid subscript reference'. After setting connectionString or databaseName property add: connected = true This opens the connection to the database server. Once the connection is open, setting the procedureName will be able to retrieve the parameter definitions from the server.
for example : (NOTE: this refers to this form the adoStoredProc is in) this.ADOSP = new ADOSTOREDPROC(this) with (this.ADOSP) left = 1764.0 top = 132.0 database = <your database name> connected = true procedureName = "sp_someprocedureName" with (parameters["@ID"]) type = "SmallInt" value = 1234 length = 4 endwith active = true endwith |
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
||||||||
|
|
|
|
|
||||||