Close - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

Result

  

Close

  

close a Result module

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

result:-Close( )

Parameters

result

-

Result module

Description

• 

Close frees the resources associated with result.  This happens automatically when result is garbage collected; however, you can call Close to release the resources immediately.

• 

Any descendant modules of result are closed when result is closed.  (A module is a descendant of a parent module if it is returned by one of the parent module's exports or if it is a descendant of one of the parent module's descendants.)

Examples

Create a Result, res.

driverDatabaseLoadDriver:

conndriver:-OpenConnectionurl,name,pass:resconn:-ExecuteQuerySELECT * FROM animals:

Close res.

res:-Close

Try using res.

res:-Next

Error, (in ExecuteQuery) this object has been closed, no further operations are possible

See Also

Database

Database[Connection][ExecuteQuery]

Database[Result]

Database[usage]

 


Download Help Document