package wasm-sql:core@0.1.0;
/// Core SQL database world providing connection pooling, transactions, and query execution.
/// Import this world to access SQL databases from a WASM component.
/// Use together with a database-specific world (e.g., wasm-sql:postgres/host) for type codecs.
world host {
import pool;
import transaction;
import query;
import query-types;
import codecs;
}