base.SqlHandle.create

Create a new base.SqlHandle object.

Syntax

base.SqlHandle.create()
  RETURNS base.SqlHandle

Usage

Use the create() method to create a base.SqlHandle object to execute SQL statements.

The value returned by this method must be assigned to a variable defined with the base.SqlHandle type.

As with other built-in classes, the SqlHandle object will be automatically destroyed if no longer referenced.

Example

DEFINE sh base.SqlHandle
LET sh = base.SqlHandle.create()
...

For a complete example, see Example 2: SqlHandle with result set SQL.