ListProcedures (ODBCConnection - LotusScript)

Lists the executable procedures at the connected data source.

Defined in

ODBCConnection

Syntax

procArray = odbcConnection . ListProcedures( [ dataSourceName$ [ , userID$ [ , password$ ]]] )

Parameters

dataSourceName$

String. Optional. The name of the data source.

userID$

String. Optional. The name of the user ID.

password$

String. Optional. The password for the user ID.

Return value

procArray

Array of strings. Each element in the array is the name of an executable procedure at the connected data source. The DBMS may list all stored procedures, or only those that the specified user can run.

Errors

Not connected to a data source (DBstsNCON)

Unable to get user ID and password (DBstsACCS)

Events

BeforeListProcedures

AfterListProcedures

Example