Description
This is the type of the stored procedure. The possible values are: SQL Procedure - 0, SQL Function - 1, Basic Procedure - 2, Basic Function - 3. DATATYPE: Integer.
Property type
Read-write property
Syntax
Visual Basic |
Public Property Type() As Variant |
Example
Dim MyProcedure As Procedure
Dim iType As Integer
' 0 indicates that the stored procedure is a SQL Procedure
iType = 0
MyProcedure.Type = iType