We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bd616 commit 378f395Copy full SHA for 378f395
src/databricks/sql/client.py
@@ -701,8 +701,10 @@ def execute(
701
702
def executemany(self, operation, seq_of_parameters):
703
"""
704
- Prepare a database operation (query or command) and then execute it against all parameter
705
- sequences or mappings found in the sequence ``seq_of_parameters``.
+ Execute the operation once for every set of passed in parameters.
+
706
+ This will issue N sequential request to the database where N is the length of the provided sequence.
707
+ No optimizations of the query (like batching) will be performed.
708
709
Only the final result set is retained.
710
0 commit comments