We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a02a592 commit d5d46a7Copy full SHA for d5d46a7
1 file changed
src/lib.rs
@@ -587,6 +587,7 @@ async fn execute(cursor: &Cursor, sql: String, parameters: Option<&PyTuple>) ->
587
cursor.rows.replace(Some(rows));
588
} else {
589
stmt.execute(params).await.map_err(to_py_err)?;
590
+ cursor.rows.replace(None);
591
}
592
593
let mut rowcount = cursor.rowcount.borrow_mut();
0 commit comments