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
Features and improvements (#9) (#10)
* Removed `Queries` struct in favor of functions for individual queries.
* Support transactions for `sync` and `async`
* Batch query function params uses anything that implements `IntoIterator` rather than `Vec`
* Each future in the stream returned by `:batchmany` query returns stream from an iterator over rows instead of a stream from `Vec`
* `:many` query returns an Iterator over rows instead of a `Vec`
* Generic client implentation for `sync` and `async` clients
* Export `sqlc-derive` proc-macros from `sqlc-core` lib
* Code refactor
* Updated examples (with transactions)