5 stable releases

23.0.2 Jun 6, 2023
23.0.1 Feb 5, 2023
23.0.0 Nov 19, 2022
22.2.1 Sep 30, 2022

#1827 in Database interfaces

Download history 43/week @ 2023-12-18 18/week @ 2023-12-25 15/week @ 2024-01-01 8/week @ 2024-01-15 1/week @ 2024-01-29 66/week @ 2024-02-12 1/week @ 2024-02-19 26/week @ 2024-02-26 1/week @ 2024-03-04 7/week @ 2024-03-11 24/week @ 2024-03-18 92/week @ 2024-04-01

123 downloads per month

MIT/Apache

340KB
7K SLoC

Simple mysql driver for WASI

This crate offers:

  • MySql database driver in pure rust;
  • connection pool;
  • Compiles to WebAssembly and runs in the WasmEdge Runtime as a lightweight alternative to Linux containers;
  • We do not yet support SSL / TLS connections to databases in the WASI driver

For more details and usage examples, please see the upstream rust-mysql-simple source and this example.

Installation

Put the desired version of the crate into the dependencies section of your Cargo.toml:

[dependencies]
mysql_wasi = "23.0.1"

Example

use mysql::*;
use mysql::prelude::*;

#[derive(Debug, PartialEq, Eq)]
struct Payment {
    customer_id: i32,
    amount: i32,
    account_name: Option<String>,
}


fn main() -> std::result::Result<(), Box<dyn std::error::Error>> {
    let url = "mysql://root:password@localhost:3307/db_name";
    # Opts::try_from(url)?;
    # let url = get_opts();
    let pool = Pool::new(url)?;

    let mut conn = pool.get_conn()?;

    // Let's create a table for payments.
    conn.query_drop(
        r"CREATE TEMPORARY TABLE payment (
            customer_id int not null,
            amount int not null,
            account_name text
        )")?;

    let payments = vec![
        Payment { customer_id: 1, amount: 2, account_name: None },
        Payment { customer_id: 3, amount: 4, account_name: Some("foo".into()) },
        Payment { customer_id: 5, amount: 6, account_name: None },
        Payment { customer_id: 7, amount: 8, account_name: None },
        Payment { customer_id: 9, amount: 10, account_name: Some("bar".into()) },
    ];

    // Now let's insert payments to the database
    conn.exec_batch(
        r"INSERT INTO payment (customer_id, amount, account_name)
          VALUES (:customer_id, :amount, :account_name)",
        payments.iter().map(|p| params! {
            "customer_id" => p.customer_id,
            "amount" => p.amount,
            "account_name" => &p.account_name,
        })
    )?;

    // Let's select payments from database. Type inference should do the trick here.
    let selected_payments = conn
        .query_map(
            "SELECT customer_id, amount, account_name from payment",
            |(customer_id, amount, account_name)| {
                Payment { customer_id, amount, account_name }
            },
        )?;

    // Let's make sure, that `payments` equals to `selected_payments`.
    // Mysql gives no guaranties on order of returned rows
    // without `ORDER BY`, so assume we are lucky.
    assert_eq!(payments, selected_payments);
    println!("Yay!");

    Ok(())
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~12–29MB
~490K SLoC