Is your feature request related to a problem? Please describe.
Having a simple Swift API to run multiple sql statements/actions in a transaction would be nice. I write micro services that interact with MySQL without any user requests and sending raw commands isn’t great.
Describe the solution you'd like
Something in the line of
conn.withTransaction { … }
//or
db.transaction { conn in … }
would be nice.
Is your feature request related to a problem? Please describe.
Having a simple Swift API to run multiple sql statements/actions in a transaction would be nice. I write micro services that interact with MySQL without any user requests and sending raw commands isn’t great.
Describe the solution you'd like
Something in the line of
would be nice.