clearStatementCache method

bool clearStatementCache()

Clears the prepared statement cache.

Returns true on success, false on failure.

Implementation

bool clearStatementCache() {
  final code = _bindings.odbc_clear_statement_cache();
  return code == 0;
}