(
zelf: PyRef<Self>,
sql: PyUtf8StrRef,
seq_of_params: ArgIterable,
vm: &VirtualMachine,
)
| 1124 | |
| 1125 | #[pymethod] |
| 1126 | fn executemany( |
| 1127 | zelf: PyRef<Self>, |
| 1128 | sql: PyUtf8StrRef, |
| 1129 | seq_of_params: ArgIterable, |
| 1130 | vm: &VirtualMachine, |
| 1131 | ) -> PyResult<PyRef<Cursor>> { |
| 1132 | let row_factory = zelf.row_factory.to_owned(); |
| 1133 | let cursor = Cursor::new(zelf, row_factory, vm).into_ref(&vm.ctx); |
| 1134 | Cursor::executemany(cursor, sql, seq_of_params, vm) |
| 1135 | } |
| 1136 | |
| 1137 | #[pymethod] |
| 1138 | fn executescript( |