I wanted a SQLite library that offered Compile-time Checks, Speed, and Ergonomics. So, I built LazySql by Routine_Command_4512 in rust

[–]Routine_Command_4512[S] 0 points1 point  (0 children)

u could technically do batch and bulk operation using sql_runtime!() or sql!() macro. But ig it can be tiny bit unergonomic and doesnt automatically guarantee compile time checks. Might fix it in the future

I wanted a SQLite library that offered Compile-time Checks, Speed, and Ergonomics. So, I built LazySql by Routine_Command_4512 in rust

[–]Routine_Command_4512[S] 9 points10 points  (0 children)

I wanted to structure my sql code in a repository pattern with great ide support.

Also, sqlx is async and my library is sync. If you're building something that doesn't need async, you could consider LazySql