Releases: blackbeam/mysql_async
Releases · blackbeam/mysql_async
v0.11.1
v0.11.0
- Capped client side statement cache added as well as new
stmt_cache_size
option and connection url parameter. Stmt::batch
andQueryable::batch_exec
now takesIntoIter<P>
whereParams: From<P>
instead ofVec<Into<Params>>
Stmt::unwrap()
removed andStmt::close()
added as a part ofstmt_cache_size
implementation.
v0.10.1
v0.10.0
Library rewritten for simplicity but migration should be easy.
- All of
*query
and*exec
methods now in theQueryable
trait which is implemented forConn
andTransaction
. - Now there is a single
QueryResult
type generic over queryable and protocol. QueryResult
got*_and_drop
methods forcollect
,for_each
,map
andreduce
to simplify work for cases when you sure that there is no more result sets in a query result.- For all methods of
QueryResult
andQueryable
order of elements in returned tuples changed and self is now in first place.