This commit is contained in:
dignifiedquire
2019-07-18 23:12:35 +02:00
committed by holger krekel
parent e7f0745010
commit aaa5b820d9
2 changed files with 1 additions and 2 deletions

View File

@@ -57,7 +57,6 @@ impl Sql {
P: IntoIterator,
P::Item: rusqlite::ToSql,
{
eprintln!("SQL EXECUTE: {}", sql);
self.start_stmt(sql.to_string());
self.with_conn(|conn| conn.execute(sql, params).map_err(Into::into))
}