Skip to content

Commit d43f583

Browse files
committed
cleanup
1 parent c915452 commit d43f583

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

mssql_python/cursor.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,8 +1564,13 @@ def _compute_column_type(self, column):
15641564

15651565
def executemany(self, operation: str, seq_of_parameters: list) -> None:
15661566
"""
1567-
Execute a database operation against all parameter sequences.
1568-
Automatically falls back to row-by-row execution if any parameter requires DAE/streaming.
1567+
Prepare a database operation and execute it against all parameter sequences.
1568+
This version uses column-wise parameter binding and a single batched SQLExecute().
1569+
Args:
1570+
operation: SQL query or command.
1571+
seq_of_parameters: Sequence of sequences or mappings of parameters.
1572+
Raises:
1573+
Error: If the operation fails.
15691574
"""
15701575
self._check_closed()
15711576
self._reset_cursor()

mssql_python/msvcp140.dll

-562 KB
Binary file not shown.

0 commit comments

Comments
 (0)