New feature: New builder `WhereClause` dedicated for WHERE clause
Due to the importance of the WHERE
statement in SQL, we often need to continuously append conditions and even share some common WHERE
conditions among different builders. Therefore, we abstract the WHERE
statement into a WhereClause
struct, which can be used to create reusable WHERE
conditions.
I hope the WhereClause
can help more developers to build more and more valuable SQL/DB related packages on top of this package. It's extremely welcome!
What's Changed
- #147 [NEW]
WhereClause
: A new dedicated builder for WHERE. Thanks for raising this idea to me in #145, @LeDuyViet. - #146 Optimize paging syntax for Informix flavor SQL. Thanks, @zhangyongding.
Full Changelog: v1.26.0...v1.27.0