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
//! Code examples for the usage of this database driver.
//!
//! <b>1. Database connections</b>
//!
//! Establish an authenticated connection to the database server
//! (see also [`ConnectParams`](../struct.ConnectParams.html)):
//!
//! ```rust,no_run
//! use hdbconnect::{Connection, IntoConnectParams};
//! # use hdbconnect::HdbResult;
//! # fn foo() -> HdbResult<()> {
//! let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! let mut connection = Connection::new(params)?;
//! # Ok(())
//! # }
//! ```
//!
//! <b>2. Queries and other database calls</b>
//!
//! The most generic way to fire SQL statements without preparation is using
//! `Connection::statement()`.
//! This generic method can handle very different kinds of calls (queries, dml, procedures),
//! and thus has the most complex return type, `HdbResponse`.
//!
//! ```rust,no_run
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! let query = "SELECT foo FROM bar";
//! # #[allow(unused_variables)]
//! let response = connection.statement(query)?; // HdbResponse
//! # Ok(())
//! # }
//! ```
//!
//! `HdbResponse` is a nested enum which covers all possible
//! return values we can get from the database.
//! You thus have to analyze it to come to the
//! concrete response relevant for your call.
//! You can do this either explicitly using `match` etc or with the
//! adequate short-cut method, e.g.:
//!
//! ```rust,no_run
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! # let query = "SELECT foo FROM bar";
//! let response = connection.statement(query)?; // HdbResponse
//! # #[allow(unused_variables)]
//! let resultset = response.into_resultset()?; // ResultSet
//! # Ok(())
//! # }
//! ```
//!
//! You can do the same of course with `HdbResponse`s obtained from the execution
//! of prepared statements.
//!
//! In many cases it will be more appropriate and convenient to use one of the
//! specialized methods
//!
//! * `connection.query(...) // ResultSet`
//! * `connection.dml(...)   // usize`
//! * `connection.exec(...)  // ()`
//!
//! where each has an adequate simple result type:
//!
//! ```rust,no_run
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! let qry = "SELECT foo FROM bar";
//! let resultset = connection.query(qry)?; // ResultSet
//! # Ok(())
//! # }
//! ```
//!
//! With prepared statements, the code will look like this:
//!
//! ```rust,no_run
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! let stmt_str = "insert into TEST_PREPARE (F_STRING, F_INTEGER) values(?, ?)";
//! let mut stmt = connection.prepare(stmt_str)?;
//! stmt.add_batch(&("foo", 45_i32))?;
//! stmt.add_batch(&("bar", 46_i32))?;
//! stmt.execute_batch()?;
//! # Ok(())
//! # }
//! ```
//!
//! Or like this:
//!
//! ```rust,no_run
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! let stmt_str = "select NAME, CITY from TEST_TABLE where age > ?";
//! let mut stmt = connection.prepare(stmt_str)?;
//! stmt.add_batch(&(45_i32))?;
//! let resultset = stmt.execute_batch()?;
//! # Ok(())
//! # }
//! ```
//!
//! <b>3. Resultset evaluation</b>
//!
//! Evaluating a resultset by iterating over the rows explicitly is possible, of course.
//! Note that the row iterator returns `HdbResult<Row>`, not `Row`,
//! because the resultset might need to fetch more rows lazily from the server, which can fail.
//!
//! ```rust,no_run
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! # let qry = "SELECT foo FROM bar";
//! # let resultset = connection.query(qry)?; // ResultSet
//! for row in resultset {
//!     let row = row?;
//!     // now you have a real row
//! }
//! # Ok(())
//! # }
//! ```
//!
//! Such a streaming-like behavior is especially appropriate for large resultsets.
//! Iterating over the rows, while they are fetched on-demand from the server in smaller portions,
//! makes it easy to write complex evaluations in an efficient and scalable manner.
//!
//! ```ignore
//! let key_figure = resultset.into_iter()?.map(|r|{r?}).filter(...).fold(...);
//! ```
//!
//! You _can_ retrieve the field values of a row  individually, in arbitrary order.
//! `hdbconnect::Row` provides for this a single
//! method that is generalized by its return value,
//! so you need to specify the target type explicitly:
//!
//! ```rust,no_run
//! # extern crate chrono;
//! # extern crate hdbconnect;
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams, Row};
//! use chrono::NaiveDateTime;
//! # fn main() { }
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! # let qry = "SELECT foo FROM bar";
//! # let resultset = connection.query(qry)?; // ResultSet
//! for row in resultset {
//!     let mut row:Row = row?;
//! # #[allow(unused_variables)]
//!     let f4: NaiveDateTime = row.field_into(3)?;
//! # #[allow(unused_variables)]
//!     let f1: String = row.field_into(0)?;
//! # #[allow(unused_variables)]
//!     let f3: i32 = row.field_into(2)?;
//! # #[allow(unused_variables)]
//!     let f2: Option<i32> = row.field_into(1)?;
//! }
//! # Ok(())
//! # }
//! ```
//!
//! A usually more convenient way is to convert the complete row into a normal rust value
//! or tuple or struct:
//!
//! ```rust,no_run
//! # #[macro_use]
//! # extern crate serde_derive;
//! # extern crate hdbconnect;
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn main() { }
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! # let qry = "SELECT foo FROM bar";
//! # let resultset = connection.query(qry)?; // ResultSet
//! #[derive(Deserialize)]
//! struct TestData {/* ...*/}
//! let qry = "select * from TEST_RESULTSET";
//! for row in connection.query(qry)? {
//!     let td: TestData = row?.try_into()?;
//! }
//! # Ok(())
//! # }
//! ```
//!
//! As hdbconnect uses serde for this conversion, you need to
//! specify the type of your target variable explicitly.
//!
//! Sometimes even more convenient is the option to convert the complete resultset in a single step.
//! This option supports
//! a variety of target data structures, depending on the concrete numbers of rows and columns.
//!
//! * You can always, and __most often want to__, use a <code>Vec</code> of a struct or
//!   tuple that matches the fields of the resultset.
//!
//! ```rust,no_run
//! # #[macro_use]
//! # extern crate serde_derive;
//! # extern crate hdbconnect;
//! # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//! # fn main() { }
//! # fn foo() -> HdbResult<()> {
//! # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//! # let mut connection = Connection::new(params)?;
//! # let qry = "select * from TEST_RESULTSET";
//! #[derive(Deserialize)]
//! struct MyRow {/* ...*/}
//!
//! # #[allow(unused_variables)]
//! let result: Vec<MyRow> = connection.query(qry)?.try_into()?;
//! # Ok(())
//! # }
//! ```
//!
//! * If the resultset contains only a single line (e.g. because you specified
//!   TOP 1 in your select, or you qualified the full primary key),
//!   then you can choose to deserialize into a plain <code>`MyRow`</code> directly.
//!
//!   ```rust,no_run
//!   # #[macro_use]
//!   # extern crate serde_derive;
//!   # extern crate hdbconnect;
//!   # use hdbconnect::{Connection, HdbResult, IntoConnectParams};
//!   # fn main() { }
//!   # fn foo() -> HdbResult<()> {
//!   # let params = "hdbsql://my_user:my_passwd@the_host:2222".into_connect_params()?;
//!   # let mut connection = Connection::new(params)?;
//!   # let qry = "SELECT foo FROM bar";
//!   # #[derive(Deserialize)]
//!   # struct MyRow {/* ...*/}
//!   let result: MyRow = connection.query(qry)?.try_into()?;
//!   # Ok(())
//!   # }
//!   ```
//!
//! * If the resultset contains only a single column, then you can choose to
//!   deserialize into a <code>Vec&lt;field&gt;</code>,
//!   where <code>field</code> is a type that matches the field of the resultset.
//!   If a plain rust type is used, you don't even need to derive Deserialize:
//!
//!   ```ignore
//!   let result: Vec<u32> = connection.query(qry)?.try_into()?;
//!   ```
//!
//! * If the resultset contains only a single value (one row with one column),
//!   then you can also deserialize into a plain <code>field</code>:
//!
//!   ```ignore
//!   let result: u32 = connection.query(qry)?.try_into()?;
//!   ```
//!
//! <b>4. Deserialization of field values</b>
//!
//! The deserialization of individual values provides flexibility without data loss:
//!
//! * You can e.g. convert values from a nullable column into a plain field,
//!   provided that no NULL values are given in the resultset.
//!
//! * Vice versa, you can use an Option<code>&lt;field&gt;</code> as target structure,
//!   even if the column is marked as NOT NULL.
//!
//! * Source and target integer types can differ from each other,
//!   as long as the concrete values can be assigned without loss.
//!
//! * You can convert numeric values on-the-fly into default String representations.
//!
//! You should use this flexibility with some care though, errors are returned if the data
//! violates the boundaries of the target values.
//!
//!
//! <b>5. Binary Values</b>
//!
//! So far, specialization support is not yet in rust stable. Without that, you  have to use
//! [`serde_bytes::Bytes`](https://docs.serde.rs/serde_bytes/struct.Bytes.html) and
//! [`serde_bytes::ByteBuf`](https://docs.serde.rs/serde_bytes/struct.ByteBuf.html)
//! as lean wrappers around `&[u8]` and `Vec<u8>`
//! to serialize into or deserialize from binary database types.
//!
//! ```ignore
//! let raw_data: Vec<u8> = ...;
//! insert_stmt.add_batch(&(Bytes::new(&*raw_data)))?;
//! ```
//!
//!
//! ```ignore
//! let bindata: ByteBuf = resultset.try_into()?; // single binary field
//! let first_byte = bindata[0];
//! ```
//!
//!
//! <b>6. LOBs</b>
//! Binary and Character LOBs can be treated like "normal" binary and String data, i.e.
//! you can convert them with the methods described above into `ByteBuf` or String values.
//!
//! But of course you often do not want to materialize the complete "Large Object", especially
//! if you just want to stream it into a writer.
//!
//! This can be easily accomplished as well:
//!
//! ```ignore
//!     let mut resultset: hdbconnect::ResultSet = connection.query(query)?;
//!     let mut clob: CLOB = resultset.pop_row().unwrap().field_into_clob(1)?;
//!     io::copy(&mut clob, &mut writer)?;
//! ```
//!
//! While being read by `io::copy()`, the CLOB will continuously fetch more data from the
//! database until the complete CLOB was passed over.
//!