deallocate method

Future<void> deallocate()

Deallocates this prepared statement

Use this method to prevent memory leaks for long running connections All prepared statements are automatically deallocated by database when connection is closed

Implementation

Future<void> deallocate() {
  return _connection._deallocatePreparedStmt(this);
}