We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 686df3e + f88a0e4 commit 44094f7Copy full SHA for 44094f7
src/databricks/sql/client.py
@@ -526,9 +526,11 @@ def execute(
526
527
def executemany(self, operation, seq_of_parameters):
528
"""
529
- Prepare a database operation (query or command) and then execute it against all parameter
530
- sequences or mappings found in the sequence ``seq_of_parameters``.
+ Execute the operation once for every set of passed in parameters.
531
+ This will issue N sequential request to the database where N is the length of the provided sequence.
532
+ No optimizations of the query (like batching) will be performed.
533
+
534
Only the final result set is retained.
535
536
:returns self
0 commit comments