You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bulk_insert command does not work if it is used without a context manager, returns a value for the number of rows that were supposed to be inserted and does not throw an error:
Works:
with sql_cnxn as connection:
return_result = connection.bulk_insert(table_name, bulk_insert_data)
The bulk_insert command does not work if it is used without a context manager, returns a value for the number of rows that were supposed to be inserted and does not throw an error:
Works:
Does not work:
The text was updated successfully, but these errors were encountered: