mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-27 04:54:21 +01:00
## Changes - AS-IS - `LimboConnection` implements `Connection` - `JDBC4Connection` implements `LimboConnection` - TO-BE - `LimboConnection` doesn't implement `Connection`. It is used to represent connection to limbo only. - `JDBC4Connection` implements `Connection` directly. Holds `LimboConnection` in member field. - This helps remove the complexity of java's `Connection` interface away from `LimboConnection`. We can focus on implementing limbo's feature inside `LimboConnection` and let `JDBC4Connection` handle the interoperability with jdbc world. ## Reference https://github.com/tursodatabase/limbo/issues/615 Closes #916