tursodatabase / libsql-client-go

Go client API for libSQL
MIT License
166 stars 23 forks source link

Deal with multiple statements at once for all kinds of connections #27

Open luisfvieirasilva opened 1 year ago

luisfvieirasilva commented 1 year ago

Right now (after this PR is merger) we have three kinds of connections: file://, ws:// and http://. Each one of them has a different behavior when we query multiple statements at once. For instance, if I run select 1; select 2;

The idea is to standardized this pattern, following http behavior. That is the closest one to go database/sql standard