setCurrentSchema abstract method

Future<void> setCurrentSchema(
  1. String name
)

Sets the current schema/namespace for operations.

For PostgreSQL: Sets the search_path to the specified schema. For MySQL: Equivalent to USE database. For SQLite: No-op (single schema per file).

Implementation

Future<void> setCurrentSchema(String name);