Pandas to_sql - Increase table's index when appending DataFrame
Even though Pandas has a lot of export options, its main purpose is not intented to use as database management api. Managing indexes is typically something a database should take care of.
I would suggest to set index=False, if_exists='append'
and create the table with an auto-increment index:
CREATE TABLE AReg (
id INT NOT NULL AUTO_INCREMENT,
# your fields here
PRIMARY KEY (id)
);