The SqlHandle class / base.SqlHandle methods |
Create a new base.SqlHandle object.
create() RETURNING handle base.SqlHandle
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.
DEFINE sh base.SqlHandle LET sh = base.SqlHandle.create() ...