Skip to content

Commit 46a16ff

Browse files
committed
resolve comments
1 parent 42824f1 commit 46a16ff

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

mssql_python/cursor.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,12 @@ def executemany(self, operation: str, seq_of_parameters: list) -> None:
638638
"""
639639
Prepare a database operation and execute it against all parameter sequences.
640640
This version uses column-wise parameter binding and a single batched SQLExecute().
641+
Args:
642+
operation: SQL query or command.
643+
seq_of_parameters: Sequence of sequences or mappings of parameters.
644+
645+
Raises:
646+
Error: If the operation fails.
641647
"""
642648
self._check_closed()
643649
self._reset_cursor()

0 commit comments

Comments
 (0)