• 1.81K Posts
  • 7.37K Comments
Joined 3 years ago
cake
Cake day: April 27th, 2023

help-circle
  • Diesel is an ORM

    This is kind of stretch to say though - it is not an ORM if you compare it to something like ActiveRecord. Diesel is just a DSL for writing SQL queries that are verified by the compiler.

    sqlx requires a modern macro system

    I wouldn’t say it requires using macros. You could definitely imagine verifying queries in the same way in languages without macros. But yea, this is one of the strengths of Rust I suppose.