mysql_macro

Crates.iomysql_macro
lib.rsmysql_macro
version0.1.40
sourcesrc
created_at2024-01-03 02:25:37.530593
updated_at2024-07-03 05:41:39.056473
descriptionmysql macro for mysql_async
homepagehttps://github.com/i18n-site/rust/tree/main/mysql_macro
repositoryhttps://github.com/i18n-site/rust.git
max_upload_size
id1086934
size13,405
(3tieto)

documentation

README

mysql macro: mysql macro for mysql_async

use mysql_macro::e;

#[tokio::test]
async fn main() -> aok::Result<()> {
  loginit::init();

  let sql = format!("SELECT {}", 1);

  e(sql.clone(), vec![]).await?;

  // tracing::debug!("test");
  // let id_li = vec![1];
  // let li: HashMap<_, String> = id_v("payBrand", id_li).await?;
  // let li: HashMap<_, String> = id_v("payBrand", *&[1]).await?;

  // let mail_id: Option<Option<u64>> = q01!(r#"select mailId("a@b.c")"#);
  // let mail_id: Option<u64> = q1!(r#"select mailId("a@b.c")"#);
  //
  // e!(r"select mailHostid('a.com')");
  //
  // let mut conn = conn!();
  //
  // let mail_host_id: u64 = q1!(&mut conn; r"select mailHostid('a.com')");
  // let mail_host_id: u64 = q1!(r"select mailHostid('a.com')");
  // let mail_host_id: u64 = q1!(r"select mailHostid(?)", "a.com");
  // let mail_host_id: Option<u64> = q01!("select mailHostid('a.com')",);
  //
  // let q: Vec<Option<u64>> = q!(&mut conn; r"select mailHostid(?)","a.com");
  //
  // let q: Vec<(u64,)> = q!(r"select mailHostid(?)", "a.com");
  //
  // let q: Vec<u64> = q!(r"select mailHostid(?)", "a.com");

  // let s = r#"'\'test\''"#;
  // println!("{}", mysql_macro::s(s));
  //
  // let s = [211, 222, 223, 224, 225];
  // println!("{}", mysql_macro::b(&s[..]));
  Ok(())
}
Commit count: 20

cargo fmt