Hi,
I'm getting an unexpected behavior when using pandas function to_sql(), which uses sqlalchemy-iris. After the first execution, a transaction seems to be opened and all rows inserted are lost after closing the connection:
engine = create_engine(f"iris://{args['username'{args['password'# rows are kept after close connectionI did some research and based on this stackoverflow post and this and this doc pages, I changed the connection and it worked:
conn = engine.connect().execution_options(isolation_level=.png)
.png)



