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
//! Connection string parsing in Rust
//!
//! # Examples
//!
//! JDBC
//! ```
//! use connection_string::JdbcString;
//!
//! let conn: JdbcString = r#"jdbc:sqlserver://server\instance:80;key=value;foo=bar"#.parse().unwrap();
//! assert_eq!(conn.sub_protocol(), "jdbc:sqlserver");
//! ```
//!
//! Ado.net
//! ```
//! use connection_string::AdoNetString;
//!
//! let input = "Persist Security Info=False;Integrated Security=true;\nInitial Catalog=AdventureWorks;Server=MSSQL1";
//! let _: AdoNetString = input.parse().unwrap();
//! ```
/// The WASM representations of the connection string structs.
pub use AdoNetString;
pub use JdbcString;
pub use Error;
type Result<T> = Result;