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
use ;
use cratestmt;
/// Executes user-authored SQL against a SQL-capable driver.
///
/// Unlike [`QuerySql`](super::QuerySql), this operation carries backend SQL
/// text directly. The driver does not serialize a Toasty statement AST before
/// executing it.
///
/// The SQL text uses the placeholder syntax reported by
/// [`Capability::sql_placeholder`](super::super::Capability::sql_placeholder).
/// Parameters carry database storage types. The public raw SQL builders infer
/// these from bound values and driver capabilities unless the caller supplies
/// an explicit type.
/// Return mode for a [`RawSql`] operation.