1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
//! Diesel integration for Ultimo
//!
//! Provides database access with Diesel ORM.
//!
//! # Features
//!
//! - Connection pooling with r2d2
//! - PostgreSQL, MySQL, SQLite support
//! - Schema management
//! - Type-safe queries
//! - Migration support
//!
//! # Example
//!
//! ```rust,ignore
//! use ultimo::prelude::*;
//! use ultimo::database::diesel::DieselPool;
//! use diesel::prelude::*;
//!
//! // Define schema
//! table! {
//! users (id) {
//! id -> Integer,
//! name -> Text,
//! email -> Text,
//! }
//! }
//!
//! #[derive(Queryable, Serialize)]
//! struct User {
//! id: i32,
//! name: String,
//! email: String,
//! }
//!
//! #[tokio::main]
//! async fn main() -> ultimo::Result<()> {
//! let mut app = Ultimo::new();
//!
//! // Connect to database
//! let pool = DieselPool::<diesel::PgConnection>::new("postgres://localhost/mydb")?;
//! app.with_diesel(pool);
//!
//! // Query users
//! app.get("/users", |ctx: Context| async move {
//! let mut conn = ctx.diesel()?;
//! let users = users::table
//! .load::<User>(&mut *conn)
//! .map_err(|e| UltimoError::Internal(e.to_string()))?;
//! ctx.json(users).await
//! });
//!
//! // Get user by ID
//! app.get("/users/:id", |ctx: Context| async move {
//! let id: i32 = ctx.req.param("id")?.parse()?;
//! let mut conn = ctx.diesel()?;
//!
//! let user = users::table
//! .find(id)
//! .first::<User>(&mut *conn)
//! .map_err(|e| UltimoError::Internal(e.to_string()))?;
//!
//! ctx.json(user).await
//! });
//!
//! // Create user
//! app.post("/users", |mut ctx: Context| async move {
//! #[derive(Deserialize, Insertable)]
//! #[diesel(table_name = users)]
//! struct NewUser {
//! name: String,
//! email: String,
//! }
//!
//! let input: NewUser = ctx.req.json().await?;
//! let mut conn = ctx.diesel()?;
//!
//! let user = diesel::insert_into(users::table)
//! .values(&input)
//! .get_result::<User>(&mut *conn)
//! .map_err(|e| UltimoError::Internal(e.to_string()))?;
//!
//! ctx.json(user).await
//! });
//!
//! app.listen("127.0.0.1:3000").await
//! }
//! ```
//!
//! # Transactions
//!
//! ```rust,ignore
//! use ultimo::prelude::*;
//! use ultimo::database::diesel::DieselPool;
//! use diesel::prelude::*;
//!
//! app.post("/transfer", |mut ctx: Context| async move {
//! let mut conn = ctx.diesel()?;
//!
//! // Execute in transaction
//! conn.transaction::<_, diesel::result::Error, _>(|conn| {
//! diesel::update(accounts::table.find(from_account))
//! .set(accounts::balance.eq(accounts::balance - 100))
//! .execute(conn)?;
//!
//! diesel::update(accounts::table.find(to_account))
//! .set(accounts::balance.eq(accounts::balance + 100))
//! .execute(conn)?;
//!
//! Ok(())
//! })
//! .map_err(|e| UltimoError::Internal(e.to_string()))?;
//!
//! ctx.json(json!({"success": true})).await
//! });
//! ```
use DatabaseError;
use ;
/// Diesel connection pool
/// Type aliases for common Diesel connection types
pub type PgPool = ;
pub type MySqlPool = ;
pub type SqlitePool = ;