# MekaDB Register at https://hypi.ai/mekadb. ## Usage ```rust fn demo(){ let client = MekaDBClient::connect("https://mekadb.hypi.app".to_owned()).await?; let ctx = client.login("".to_owned(), "".to_owned(), "".to_owned(), ).await?; let _ = client.query("CREATE TABLE IF NOT EXISTS user(username VARCHAR, pass VARCHAR, PRIMARY KEY (username))".to_owned(),ctx.clone(),None::>).await?; let _ = client.query("INSERT INTO user(username,pass) VALUES('courtney','pass1'),('damion','pass2')".to_owned(), ctx.clone(), None::>, ).await?; let rows = client.query("SELECT * FROM user".to_owned(), ctx.clone(), None::>,).await?; println!("Rows {:?}", rows); } ```