Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

This is the type Type of the stored procedure. The possible Valid values are: 0 = SQL Procedure - 0, 1 = SQL Function - 1, 2 = Basic Procedure - 2, 3 = Basic Function - 3. DATATYPE: Integer.

Property

...

Type

  • Read-write property

Syntax

...

Code Block
languagevb
Public Property

...

 Text() As Variant

Example

Dim MyProcedure As Procedure
anchorwp1022643wp1022643 
Anchorwp1022644wp1022644Dim iType As Integer
Anchorwp1022645wp1022645 
Anchorwp1022646wp1022646' 0 indicates that the stored procedure is a SQL Procedure
Anchorwp1022647wp1022647 
Anchorwp1022648wp1022648iType = 0
Anchorwp1022649wp1022649MyProcedure.Type = iType

Dim ProcText As String


MyProcedure.Text = ProcText


Info
titleSee Also