Skip to content

Instantly share code, notes, and snippets.

@vebodev
Last active May 11, 2023 09:42
Show Gist options
  • Save vebodev/6ac8abcb383ef0063956e94379290e6c to your computer and use it in GitHub Desktop.
Save vebodev/6ac8abcb383ef0063956e94379290e6c to your computer and use it in GitHub Desktop.
Rust
assert!(matches!(ret, Err(Error::ComingSoon)));
// Leave ODBC to convert the parameter to the correct type
let param: Vec<_> = params
.iter()
.map(|p| p.into_parameter())
.collect();
connection.execute(&sql, param.as_slice())?
#[derive(Debug, StructOpt)]
#[structopt(name = "wechat-user-refresh", about = "批量刷新微信用户 unionid")]
struct Opt {
#[structopt(short="t", long="token", help="微会员企业Token, 不是微信token")]
token: String,
#[structopt(short="c", long="concurrency", default_value="16", help="并发数")]
concurrency: usize,
#[structopt(name="FILE", parse(from_os_str), help="包含 card_num,openid 格式的 csv文件")]
file: PathBuf,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment