dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleScript Class / Statements Property

In This Topic
Statements Property (OracleScript)
In This Topic
Gets the collection of statements that make up the script.
Syntax
'Declaration
 
Public Shadows ReadOnly Property Statements As OracleSqlStatementCollection
 

Property Value

The collection of the script statements.
Remarks
Use the Statements to obtain OracleSqlStatementCollection, which allows accessing individual statements of the script and executing them manually. The collection is read-only, so you cannot modify it in any way. It is also bound to the originating OracleScript object, which means that if you have altered ScriptText, a previously obtained collection will be cleared.
See Also