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
//! Dameng Rust SDK
//!
//! A comprehensive Rust SDK for Dameng Database (DM8) with ODBC support.
//!
//! # Features
//! - Connection management with connection pooling
//! - Comprehensive CRUD operations
//! - Transaction support
//! - Type-safe query building
//! - Error handling with proper error types
//! - Logging support
//! - JSON serialization/deserialization
//!
//! # Getting Started
//!
//! ```rust
//! use dameng_rust_sdk::{Connection, ConnectionOptions, Result};
//!
//! fn main() -> Result<()> {
//! // Create connection with options
//! let mut conn = Connection::with_options(ConnectionOptions {
//! server: "localhost".to_string(),
//! port: 5236,
//! username: "SYSDBA".to_string(),
//! password: "Z@xcvbnm123".to_string(),
//! schema: "DMHR".to_string(),
//! ..Default::default()
//! })?;
//!
//! // Execute query
//! let result = conn.query("SELECT * FROM EMPLOYEES LIMIT 10")?;
//!
//! println!("Query result: {:?}", result);
//!
//! Ok(())
//! }
//! ```
pub use DamengClient;
pub use ;
pub use ;
pub use ;
/// Re-export commonly used types