CreateStatement - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Connection

  

CreateStatement

  

create a statement module

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

connection:-CreateStatement(opts)

Parameters

connection

-

Connection module

opts

-

(optional) equations of the form option=integer where option is one of timeout, maxrows or maxfieldsize

Description

• 

CreateStatement opens a Statement module.  This Statement module can be used to send arbitrary SQL statements to the database.

• 

CreateStatement accepts as optional arguments the same options that can be set with Statement:-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.

Examples

driverDatabaseLoadDriver:

conndriver:-OpenConnectionurl,name,pass:

Create a statement with no options specified.

stat1conn:-CreateStatement

stat1moduleoptionunload=Close;localhandle;exportExecute,NextResult,Close,SetOptions,GetOptions;end module

(1)

Create statements with various options.

stat2conn:-CreateStatementtimeout=10:stat3conn:-CreateStatementtimeout=5,maxrows=100:

See Also

Database

Database[Connection]

Database[Connection][CreatePreparedStatement]

Database[Connection][ExecuteQuery]

Database[Connection][ExecuteUpdate]

Database[PreparedStatement]

Database[Statement]

Database[usage]