You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add bind_key parameter support to all adapter configurations (#89)
Fixes the missing `bind_key` parameter support across all database adapter configurations
### Backward Compatibility
✅ **Existing code continues to work unchanged**:
```python
# Existing code (no bind_key) - defaults to None
config = AiosqliteConfig(pool_config={"database": ":memory:"})
assert config.bind_key is None
# New CLI code (explicit bind_key)
config = AiosqliteConfig(
pool_config={"database": ":memory:"},
bind_key="my_database"
)
assert config.bind_key == "my_database"
```
Fixes CLI configuration loading and ensures consistent `bind_key` support across all database adapters as part of the configuration protocol.
0 commit comments