Skip to content

sqlex v1.5.1 - Initial Release

Choose a tag to compare

@suiriass suiriass released this 20 Jun 03:04

🚀 What's New
sqlex is a modernized drop-in replacement for jmoiron/sqlx that addresses long-standing pain points while adding new capabilities:

Auto IN expansion — write WHERE id IN (?) with a slice, no more manual sqlx.In + Rebind dance
Pluggable Hooks — intercept SQL execution for logging, metrics, tracing, etc.
Auto placeholder conversion — use ? everywhere, automatically converts to $1, @p1, etc. per database
Generic JSON support — JSONValue[T] maps JSON columns to strong types
Go 1.21+ — uses any, modern error handling, actively maintained