asyncmy¶
Async MySQL driver.
Configuration¶
- class sqlspec.adapters.asyncmy.AsyncmyConfig[source]¶
Bases:
AsyncDatabaseConfig[Connection,AsyncmyPool,AsyncmyDriver]Configuration for Asyncmy database connections.
Example:
config = AsyncmyConfig( connection_config=AsyncmyPoolParams( host="localhost", user="root", database="mydb" ) )
- driver_type¶
alias of
AsyncmyDriver
- __init__(*, connection_config=None, connection_instance=None, migration_config=None, statement_config=None, driver_features=None, bind_key=None, extension_config=None, observability_config=None, **kwargs)[source]¶
Initialize Asyncmy configuration.
- Parameters:
connection_config¶ -- Connection and pool configuration parameters
connection_instance¶ -- Existing pool instance to use
migration_config¶ -- Migration configuration
statement_config¶ -- Statement configuration override
driver_features¶ -- Driver feature configuration (TypedDict or dict)
bind_key¶ -- Optional unique identifier for this configuration
extension_config¶ -- Extension-specific configuration (e.g., Litestar plugin settings)
observability_config¶ -- Adapter-level observability overrides for lifecycle hooks and observers
**kwargs¶ -- Additional keyword arguments
- async create_connection()[source]¶
Create a single async connection (not from pool).
- Return type:
Connection- Returns:
An Asyncmy connection instance.
- async provide_pool(*args, **kwargs)[source]¶
Provide async pool instance.
- Return type:
Pool- Returns:
The async connection pool.
Driver¶
- class sqlspec.adapters.asyncmy.AsyncmyDriver[source]¶
Bases:
AsyncDriverAdapterBaseMySQL/MariaDB database driver using AsyncMy client library.
Implements asynchronous database operations for MySQL and MariaDB servers with support for parameter style conversion, type coercion, error handling, and transaction management.
- __init__(connection, statement_config=None, driver_features=None)[source]¶
Initialize driver adapter with connection and configuration.
- Parameters:
connection¶ (
Connection) -- Database connection instancestatement_config¶ (
StatementConfig|None) -- Statement configuration for the driverdriver_features¶ (
dict[str, typing.Any] |None) -- Driver-specific features like extensions, secrets, and connection callbacksobservability¶ -- Optional runtime handling lifecycle hooks, observers, and spans
- async dispatch_execute(cursor, statement)[source]¶
Execute single SQL statement.
Handles parameter processing, result fetching, and data transformation for MySQL/MariaDB operations.
- async dispatch_execute_many(cursor, statement)[source]¶
Execute SQL statement with multiple parameter sets.
Uses AsyncMy's executemany for batch operations with MySQL type conversion and parameter processing.
- Parameters:
- Returns:
Batch execution results
- Return type:
ExecutionResult- Raises:
ValueError -- If no parameters provided for executemany operation
- async dispatch_execute_script(cursor, statement)[source]¶
Execute SQL script with statement splitting and parameter handling.
Splits multi-statement scripts and executes each statement sequentially. Parameters are embedded as static values for script execution compatibility.
- async begin()[source]¶
Begin a database transaction.
Explicitly starts a MySQL transaction to ensure proper transaction boundaries.
- Raises:
SQLSpecError -- If transaction initialization fails
- Return type:
- async commit()[source]¶
Commit the current transaction.
- Raises:
SQLSpecError -- If transaction commit fails
- Return type:
- async rollback()[source]¶
Rollback the current transaction.
- Raises:
SQLSpecError -- If transaction rollback fails
- Return type:
- with_cursor(connection)[source]¶
Create cursor context manager for the connection.
- Parameters:
connection¶ (
Connection) -- AsyncMy database connection- Returns:
Context manager for cursor operations
- Return type:
AsyncmyCursor
- handle_database_exceptions()[source]¶
Provide exception handling context manager.
- Returns:
Context manager for AsyncMy exception handling
- Return type:
AsyncmyExceptionHandler
- async select_to_storage(statement, destination, /, *parameters, statement_config=None, partitioner=None, format_hint=None, telemetry=None, **kwargs)[source]¶
Execute a query and stream Arrow-formatted results into storage.
- Return type:
- async load_from_arrow(table, source, *, partitioner=None, overwrite=False, telemetry=None)[source]¶
Load Arrow data into MySQL using batched inserts.
- Return type:
- async load_from_storage(table, source, *, file_format, partitioner=None, overwrite=False)[source]¶
Load staged artifacts from storage into MySQL.
- Return type:
- property data_dictionary: AsyncmyDataDictionary¶
Get the data dictionary for this driver.
- Returns:
Data dictionary instance for metadata queries
Data Dictionary¶
- class sqlspec.adapters.asyncmy.data_dictionary.AsyncmyDataDictionary[source]¶
Bases:
AsyncDataDictionaryBaseMySQL-specific async data dictionary.
- dialect: ClassVar[str] = 'mysql'¶
Dialect identifier. Must be defined by subclasses as a class attribute.
- async get_feature_flag(driver, feature)[source]¶
Check if MySQL database supports a specific feature.
- Return type:
- async get_optimal_type(driver, type_category)[source]¶
Get optimal MySQL type for a category.
- Return type:
- async get_tables(driver, schema=None)[source]¶
Get tables sorted by topological dependency order using the MySQL catalog.
- Return type:
- async get_columns(driver, table=None, schema=None)[source]¶
Get column information for a table or schema.
- Return type:
- async get_indexes(driver, table=None, schema=None)[source]¶
Get index metadata for a table or schema.
- Return type: