dev-resources.site
for different kinds of informations.
Diesel vs SQLx in Raw and ORM Modes
Published at
1/12/2025
Categories
rust
postgres
database
axum
Author
yellow_coder
Author
12 person written this
yellow_coder
open
Diesel vs SQLx in Raw and ORM Modes
Rust developers often face a choice between Diesel and SQLx for database interactions. Diesel is a full-featured ORM (Object-Relational Mapper), while SQLx is a compile-time checked, async-friendly query library. Here's a quick comparison of their performance and usage in raw and ORM modes.
Performance Comparison
Mode | Diesel | SQLx |
---|---|---|
Pure ORM Mode | Slightly faster due to optimizations. | Slower compared to Diesel in ORM-like use. |
Query Builder | ~50% slower than SQLx in raw queries. | Faster, especially for raw SQL execution. |
Code Examples
Diesel in ORM Mode
Using Diesel's schema and ORM for managing database queries.
use diesel::prelude::*;
use diesel::pg::PgConnection;
use crate::schema::users;
#[derive(Queryable, Insertable)]
#[table_name = "users"]
struct User {
id: i32,
name: String,
}
fn fetch_users(conn: &PgConnection) -> Vec<User> {
use crate::schema::users::dsl::*;
users.load::<User>(conn).expect("Error loading users")
}
Diesel in Raw Query Mode
Bypassing Diesel's query builder for raw SQL queries.
use diesel::sql_query;
use diesel::pg::PgConnection;
use diesel::RunQueryDsl;
fn fetch_users_raw(conn: &PgConnection) {
let query = "SELECT id, name FROM users;";
let results = sql_query(query).load::<(i32, String)>(conn).expect("Query failed");
println!("{:?}", results);
}
SQLx in Raw Mode
Direct SQL execution using SQLx's async API.
use sqlx::{PgPool, Row};
async fn fetch_users(pool: &PgPool) {
let rows = sqlx::query("SELECT id, name FROM users;")
.fetch_all(pool)
.await
.expect("Query failed");
for row in rows {
let id: i32 = row.get("id");
let name: String = row.get("name");
println!("{} - {}", id, name);
}
}
SQLx in ORM-Like Mode
Using SQLx structs to map query results.
use sqlx::FromRow;
#[derive(FromRow)]
struct User {
id: i32,
name: String,
}
async fn fetch_users(pool: &PgPool) {
let users: Vec<User> = sqlx::query_as!(User, "SELECT id, name FROM users;")
.fetch_all(pool)
.await
.expect("Query failed");
println!("{:?}", users);
}
Key Takeaways
- Diesel excels in ORM mode for its type safety and compile-time guarantees but slows down with its query builder.
- SQLx is faster for raw queries and supports async natively, making it ideal for modern web applications.
For a high-performance, async-friendly environment, SQLx in raw mode is a solid choice. However, if compile-time safety and ease of schema management matter more, Diesel ORM is unbeatable.
rust Article's
30 articles in total
Mastering Rust's 'unsafe' Code: Balancing Safety and Performance in Systems Programming
read article
Meme Tuesday ๐ฑ
read article
Pulumi WASM/Rust devlog #3
read article
Typed integers in Rust for safer Python bytecode compilation
read article
### **Exploring Embedded Systems Development with Rust**
read article
Scan Your Linux Disk and Visualize It on Mac with GrandPerspective
read article
Diesel vs SQLx in Raw and ORM Modes
currently reading
C++ or Rust? I'd stick to my good old C++
read article
Rust
read article
Building a Developer-Focused Search Engine in Rust: Lessons Learned and Challenges Overcome ๐
read article
A Gentle Introduction to WebAssembly in Rust (2025 Edition)
read article
Stable Memory In Internet Computer
read article
Solana Account Model Simplified
read article
Rust Frameworks
read article
Mastering Rust's Type System: A Comprehensive Guide for Robust and Efficient Code
read article
๐ Intrepid AI 0.10: Ready for Liftoff!
read article
Swiftide 0.16 brings AI agents to Rust
read article
Introducing Yamaswap
read article
Rust and Generative AI: Creating High-Performance Applications
read article
Rust: Matchy Matchy
read article
Rust registry error "candidate versions found which didn't match"
read article
Mastering Rust Lifetimes: Advanced Techniques for Safe and Efficient Code
read article
Rust
read article
่ฎฉๅฎๅๆๆบไธๅๅ็ฐ๏ผๅจๅฎๅๆๆบไธๆญๅปบ Rust ๅผๅ็ฏๅข
read article
How to test Asynchronous Rust Programs with Tokio [TUTORIAL]
read article
SSH port forwarding from within code
read article
Reto de Rust 365 dรญas, 2025!!
read article
Rust-Powered Password Decrypter: Find the String Behind the Hash! ๐ฆ๐
read article
๐ Rust Basics 5: Structs and Enums in Rust
read article
Rust mega-tutotial
read article
Featured ones: