Rust: PostgreSQL のデータを削除 (Delete)
3882 ワード
Cargo.toml
[package]
name = "postgres_delete"
version = "0.1.0"
edition = "2018"
[dependencies]
postgres = "*"
src/main.rs
// --------------------------------------------------------------------
/*
postgres_delete/src/main.rs
Jul/24/2020
*/
// --------------------------------------------------------------------
use std::env;
use postgres::{Client, NoTls, Error};
// --------------------------------------------------------------------
fn main() -> Result<(), Error> {
eprintln!("*** start ***");
let args: Vec<_> = env::args().collect();
let key_in = &args[1];
eprintln!("{}",key_in);
let mut client = Client::connect("postgresql://scott:tiger123@localhost/city", NoTls)?;
let sql_str = "delete from cities where id = '".to_string()
+ &key_in.to_string() + "'";
client.batch_execute(&sql_str)?;
eprintln!("*** end ***");
Ok(())
}
// --------------------------------------------------------------------
実行コマンド
cargo run t3467
Author And Source
この問題について(Rust: PostgreSQL のデータを削除 (Delete)), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/b8dafd60ba61edf0b756著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .