postgreSQL.cursor.dispose

Syntax

postgreSQL.cursor.dispose (cursorRef)

Params

cursorRef is a reference to a cursor as returned by postgreSQL.cursor.create.

Action

Disposes a cursor.

Returns

True.

Examples

postgreSQL.cursor.dispose (cursorRef)

« 63009630

Notes

When you no longer need a cursor, you can dispose it by calling this verb to free all memory occupied by query results. Otherwise, the cursor will be disposed automatically when you close or release the associated connection.

See Also

postgreSQL.cursor.create

postgreSQL.connection.close

postgreSQL.connection.release