Connection:-CreatePreparedStatement - create a Prepared Statement Module
|
Calling Sequence
|
|
connection:-CreatePreparedStatement( sql, opts )
|
|
Parameters
|
|
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
|
|
|
|
|
Description
|
|
•
|
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.
|
|
The number of seconds the client waits for a response from the database.
|
|
The maximum number of rows a query returns.
|
|
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.
|
|
|
Examples
|
|
>
|
|
>
|
|
Create a statement with no options specified.
>
|
|
| (1) |
Create statements with various options.
>
|
|
|
|
Download Help Document
Was this information helpful?