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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
use crate*;
use ;
use crate;
/// PostgreSQL-specific prepared statement wrapper.
///
/// A prepared statement represents a compiled SQL query with placeholder parameters
/// that can be executed multiple times with different parameter values. This wrapper
/// provides PostgreSQL-specific functionality while maintaining compatibility with the
/// core Drizzle prepared statement infrastructure.
///
/// ## Features
///
/// - **Parameter Binding**: Safely bind values to SQL placeholders using `$1`, `$2`, etc.
/// - **Reusable Execution**: Execute the same query multiple times efficiently
/// - **Memory Management**: Automatic handling of borrowed/owned lifetimes
/// - **Type Safety**: Compile-time verification of parameter types
///
/// ## Basic Usage
///
/// ```rust
/// # mod drizzle {
/// # pub mod core { pub use drizzle_core::*; }
/// # pub mod error { pub use drizzle_core::error::*; }
/// # pub mod types { pub use drizzle_types::*; }
/// # pub mod migrations { pub use drizzle_migrations::*; }
/// # pub use drizzle_types::Dialect;
/// # pub use drizzle_types as ddl;
/// # pub mod postgres {
/// # pub mod values { pub use drizzle_postgres::values::*; }
/// # pub mod traits { pub use drizzle_postgres::traits::*; }
/// # pub mod common { pub use drizzle_postgres::common::*; }
/// # pub mod attrs { pub use drizzle_postgres::attrs::*; }
/// # pub mod builder { pub use drizzle_postgres::builder::*; }
/// # pub mod helpers { pub use drizzle_postgres::helpers::*; }
/// # pub mod expr { pub use drizzle_postgres::expr::*; }
/// # pub mod types { pub use drizzle_postgres::types::*; }
/// # pub struct Row;
/// # impl Row {
/// # pub fn get<'a, I, T>(&'a self, _: I) -> T { unimplemented!() }
/// # pub fn try_get<'a, I, T>(&'a self, _: I) -> Result<T, Box<dyn std::error::Error + Sync + Send>> { unimplemented!() }
/// # }
/// # pub mod prelude {
/// # pub use drizzle_macros::{PostgresTable, PostgresSchema, PostgresIndex};
/// # pub use drizzle_postgres::attrs::*;
/// # pub use drizzle_postgres::common::PostgresSchemaType;
/// # pub use drizzle_postgres::traits::{PostgresColumn, PostgresTable};
/// # pub use drizzle_postgres::values::{PostgresInsertValue, PostgresUpdateValue, PostgresValue};
/// # pub use drizzle_core::*;
/// # }
/// # }
/// # }
/// # use drizzle::postgres::prelude::*;
/// # use drizzle::postgres::builder::QueryBuilder;
/// # use drizzle::core::expr::eq;
/// #
/// # #[PostgresTable(name = "users")]
/// # struct User {
/// # #[column(serial, primary)]
/// # id: i32,
/// # name: String,
/// # }
/// #
/// # #[derive(PostgresSchema)]
/// # struct Schema {
/// # user: User,
/// # }
/// #
/// # let builder = QueryBuilder::new::<Schema>();
/// # let Schema { user } = Schema::new();
/// // Build query with a placeholder
/// let query = builder
/// .select(user.name)
/// .from(user)
/// .r#where(eq(user.id, Placeholder::anonymous()));
///
/// // Convert to SQL
/// let sql = query.to_sql();
/// println!("SQL: {}", sql.sql());
/// ```
///
/// ## Lifetime Management
///
/// The prepared statement can be converted between borrowed and owned forms:
///
/// - `PreparedStatement<'a>` - Borrows data with lifetime 'a
/// - `OwnedPreparedStatement` - Owns all data, no lifetime constraints
///
/// This allows for flexible usage patterns depending on whether you need to
/// store the prepared statement long-term or use it immediately.
/// Owned `PostgreSQL` prepared statement wrapper.
///
/// This is the owned counterpart to [`PreparedStatement`] that doesn't have any lifetime
/// constraints. All data is owned by this struct, making it suitable for long-term storage,
/// caching, or passing across thread boundaries.
///
/// ## Use Cases
///
/// - **Caching**: Store prepared statements in a cache for reuse
/// - **Multi-threading**: Pass prepared statements between threads (with tokio-postgres)
/// - **Long-term storage**: Keep prepared statements in application state
/// - **Query reuse**: Execute the same query with different parameters efficiently
///
/// ## Examples
///
/// ```rust
/// # mod drizzle {
/// # pub mod core { pub use drizzle_core::*; }
/// # pub mod error { pub use drizzle_core::error::*; }
/// # pub mod types { pub use drizzle_types::*; }
/// # pub mod migrations { pub use drizzle_migrations::*; }
/// # pub use drizzle_types::Dialect;
/// # pub use drizzle_types as ddl;
/// # pub mod postgres {
/// # pub mod values { pub use drizzle_postgres::values::*; }
/// # pub mod traits { pub use drizzle_postgres::traits::*; }
/// # pub mod common { pub use drizzle_postgres::common::*; }
/// # pub mod attrs { pub use drizzle_postgres::attrs::*; }
/// # pub mod builder { pub use drizzle_postgres::builder::*; }
/// # pub mod helpers { pub use drizzle_postgres::helpers::*; }
/// # pub mod expr { pub use drizzle_postgres::expr::*; }
/// # pub mod types { pub use drizzle_postgres::types::*; }
/// # pub struct Row;
/// # impl Row {
/// # pub fn get<'a, I, T>(&'a self, _: I) -> T { unimplemented!() }
/// # pub fn try_get<'a, I, T>(&'a self, _: I) -> Result<T, Box<dyn std::error::Error + Sync + Send>> { unimplemented!() }
/// # }
/// # pub mod prelude {
/// # pub use drizzle_macros::{PostgresTable, PostgresSchema, PostgresIndex};
/// # pub use drizzle_postgres::attrs::*;
/// # pub use drizzle_postgres::common::PostgresSchemaType;
/// # pub use drizzle_postgres::traits::{PostgresColumn, PostgresTable};
/// # pub use drizzle_postgres::values::{PostgresInsertValue, PostgresUpdateValue, PostgresValue};
/// # pub use drizzle_core::*;
/// # }
/// # }
/// # }
/// # use drizzle::postgres::prelude::*;
/// # use drizzle::postgres::builder::QueryBuilder;
/// #
/// # #[PostgresTable(name = "users")]
/// # struct User {
/// # #[column(serial, primary)]
/// # id: i32,
/// # name: String,
/// # }
/// #
/// # #[derive(PostgresSchema)]
/// # struct Schema {
/// # user: User,
/// # }
/// #
/// # let builder = QueryBuilder::new::<Schema>();
/// # let Schema { user } = Schema::new();
/// // Create a query and convert to SQL
/// let query = builder.select(user.name).from(user);
/// let sql = query.to_sql();
///
/// // In practice, the driver creates a PreparedStatement from the SQL
/// // let prepared = driver.prepare(sql)?;
/// // let owned: OwnedPreparedStatement = prepared.into_owned();
/// // Owned can be stored in a HashMap for reuse
/// ```
///
/// ## Conversion
///
/// You can convert between borrowed and owned forms:
/// - `PreparedStatement::into_owned()` → `OwnedPreparedStatement`
/// - `OwnedPreparedStatement` → `PreparedStatement` (via `From` trait)