August 1999
Intermediate to advanced
1488 pages
72h 53m
English
database.storedProcArgs(procName) database.storedProcArgs(procName, type1, type2, … , typeN)
The storedProcArgs() method of the database object creates a Stproc object that allows you to execute a database-specific stored procedure using the connection from which it was invoked on DB2, ODBC, and Sybase databases. If this method is invoked on Informix or Oracle databases, it has no effect. The difference between this method and the storedProc() method is that this method takes a type as a parameter for the arguments passed. These types can be IN, OUT, or INOUT. The following shows an example of passing these types:
var myStproc = myConn.storedProc("sp_employees", "INOUT", "OUT");
The scope ...
Read now
Unlock full access