Connection
CreatePreparedStatement
create a Prepared Statement Module
Calling Sequence
Parameters
Description
Examples
connection:-CreatePreparedStatement( sql, opts )
connection
-
Connection module
sql
string; the SQL statement to prepare
opts
(optional) equations of the form option=integer where option is one of timeout, maxrows or maxfieldsize
CreatePreparedStatement returns a PreparedStatement module. This PreparedStatement module can be used to send a prepared SQL statement to the database. For information on prepared statements see the PreparedStatement page.
CreatePreparedStatement accepts as optional arguments the same options that can be set with preparedstatement:-SetOptions.
timeout = integer
The number of seconds the client waits for a response from the database.
maxrows = integer
The maximum number of rows a query returns.
maxfieldsize = integer
The maximum number of bytes that a column uses to store character or binary data. This only applies to columns of type BINARY, VARBINARY, LONGVARBINARY, CHAR, VARCHAR, and LONGVARCHAR. If the limit is exceeded, then the extra data is ignored.
driver≔DatabaseLoadDriver⁡:
conn≔driver:-OpenConnection⁡url,name,pass:
Create a statement with no options specified.
pstat1≔conn:-CreatePreparedStatement⁡
stat1≔moduleoptionunload=Close;localhandle;exportExecute,NextResult,Close,SetOptions,GetOptions;end module
Create statements with various options.
pstat2≔conn:-CreatePreparedStatement⁡timeout=10:pstat3≔conn:-CreatePreparedStatement⁡timeout=5,maxrows=100:
See Also
Database
Database[Connection]
Database[Connection][CreateStatement]
Database[Connection][ExecuteQuery]
Database[Connection][ExecuteUpdate]
Database[PreparedStatement]
Database[Statement]
Database[usage]
Download Help Document