WL.Logger.debug
Server Side API Programming
Server side programming is building logic that is executed when a client invokes an adapter.
See also:
• Adapter Components
• Adapters
WL.Server
WL.Server.invokeSQLStoredProcedure(options)
This API method invokes a DB stored procedure. It may only be invoked from within a SQL
adapter implementation.
• options – Options that govern how the SQL procedure is invoked.
◦ procedure – The name of the DB hosted procedure to invoke.
◦ parameters – Any parameters required by the procedure.
See also:
• WL.Server.createSQLStatement(statement)
• WL.Server.invokeSQLStatement(options)
• SQL Adapter
WL.Server.createSQLStatement(statement)
This API method creates a SQL statement. It may only be invoked from within a SQL adapter
implementation.
• statement – A SQL statement to be executed.
The return from this function is a "prepared statement" that can then be submitted for execution
against the database.
See also:
• WL.Server.invokeSQLStoredProcedure(options)
• WL.Server.invokeSQLStatement(options)
• SQL Adapter
WL.Server.invokeSQLStatement(options)
This API method invokes a SQL statement that was previously constructed with
WL.Server.createSQLStatement(). It may only be invoked from within a SQL adapter
implementation.
• options – Options that govern the execution of the SQL statement.
◦ preparedStatement – The output of a previous called to
WL.Server.createSQLStatement().
Page 116
Comentários a estes Manuais