Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/databricks/sql/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,8 +701,10 @@ def execute(

def executemany(self, operation, seq_of_parameters):
"""
Prepare a database operation (query or command) and then execute it against all parameter
sequences or mappings found in the sequence ``seq_of_parameters``.
Execute the operation once for every set of passed in parameters.

This will issue N sequential request to the database where N is the length of the provided sequence.
No optimizations of the query (like batching) will be performed.

Only the final result set is retained.

Expand Down