New version of sqlx4k introduces SQL syntax checki...
# feed
y
New version of sqlx4k introduces SQL syntax checking on compile time. I just wanted to share the release notes for the new version of sqlx4k! This update introduces syntax checking for SQL queries using the
@Query
annotation. It helps prevent many runtime errors by validating your queries ahead of time. I’m also currently working on adding schema validation, which will validate queries against a local representation of your database schema. This local schema will be generated automatically by parsing all your migration files, allowing even more robust validation at runtime. Check it out here: https://github.com/smyrgeorge/sqlx4k?#sql-syntax-validation-compile-time
K 2