次のコードを使用して、Microsoft Access データベースにデータを挿入しています。
test_data.to_sql('employee_table', cnxn, index=False, if_exists='append', chunksize=10, method='multi')
これによりエラーが発生します:
AttributeError: 'CompileError' object has no attribute 'orig'
method
次のオプションのみを使用してもエラーは発生しません。
test_data.to_sql('employee_table', cnxn, index=False, if_exists='append', chunksize=10)