80 releases (16 breaking)

new 0.17.1 Apr 26, 2024
0.16.3 Apr 12, 2024
0.16.0 Mar 25, 2024
0.12.1 Dec 26, 2023
0.1.3 Mar 30, 2023

#147 in Database interfaces

Download history 2008/week @ 2024-01-03 2035/week @ 2024-01-10 2915/week @ 2024-01-17 2436/week @ 2024-01-24 2195/week @ 2024-01-31 451/week @ 2024-02-07 863/week @ 2024-02-14 2171/week @ 2024-02-21 2693/week @ 2024-02-28 1866/week @ 2024-03-06 2509/week @ 2024-03-13 2834/week @ 2024-03-20 2527/week @ 2024-03-27 1500/week @ 2024-04-03 1782/week @ 2024-04-10 1251/week @ 2024-04-17

7,425 downloads per month
Used in 3 crates

Apache-2.0

200KB
4.5K SLoC

Databend Driver

Databend unified SQL client for RestAPI and FlightSQL

crates.io License

usage

exec

use databend_driver::Client;

let dsn = "databend://root:@localhost:8000/default?sslmode=disable".to_string();
let client = Client::new(dsn);
let conn = client.get_conn().await.unwrap();

let sql_create = "CREATE TABLE books (
    title VARCHAR,
    author VARCHAR,
    date Date
);";
conn.exec(sql_create).await.unwrap();
let sql_insert = "INSERT INTO books VALUES ('The Little Prince', 'Antoine de Saint-Exupéry', '1943-04-06');";
conn.exec(sql_insert).await.unwrap();

query row

let row = conn.query_row("SELECT * FROM books;").await.unwrap();
let (title,author,date): (String,String,i32) = row.unwrap().try_into().unwrap();
println!("{} {} {}", title, author, date);

query iter

let mut rows = conn.query_iter("SELECT * FROM books;").await.unwrap();
while let Some(row) = rows.next().await {
    let (title,author,date): (String,String,chrono::NaiveDate) = row.unwrap().try_into().unwrap();
    println!("{} {} {}", title, author, date);
}

Type Mapping

Databend Types

General Data Types

Databend Rust
BOOLEAN bool
TINYINT i8,u8
SMALLINT i16,u16
INT i32,u32
BIGINT i64,u64
FLOAT f32
DOUBLE f64
DECIMAL String
DATE chrono::NaiveDate
TIMESTAMP chrono::NaiveDateTime
VARCHAR String
BINARY Vec<u8>

Semi-Structured Data Types

Databend Rust
ARRAY[T] Vec<T>
TUPLE[T, U] (T, U)
MAP[K, V] HashMap<K, V>
VARIANT String
BITMAP String
GEOMETRY String

Note: VARIANT is a json encoded string. Example:

CREATE TABLE example (
    data VARIANT
);
INSERT INTO example VALUES ('{"a": 1, "b": "hello"}');
let row = conn.query_row("SELECT * FROM example limit 1;").await.unwrap();
let (data,): (String,) = row.unwrap().try_into().unwrap();
let value: serde_json::Value = serde_json::from_str(&data).unwrap();
println!("{:?}", value);

Dependencies

~26–45MB
~717K SLoC