contents   index   previous   next



Database procedureName()

syntax:

database.procedureName(n)

where:

n - Zero-based integer corresponding to the stored procedure in the database.

 

return:

The name of the stored procedure with index n.

 

description:

This method returns the name of the stored procedure corresponding to the specified index, n.

 

see:

#link <sedbc>, Stproc object, Database storedProc()

 

example:

// fetch the name of stored procedure 0

procName = db.procedureName(0);

 


Database procedures()