print(f"df_shape {df.shape}")
(3497, 39)
But, I see row above 30 thousand getting imported in to database.
for index, row in df.iterrows():
cursor.execute('INSERT INTO tbl_A(Sno,A,B) \
values(?,?,?,)', \
row.Sno, row.A, row.B)
cnxn.commit()
cursor.close()