I am running a mysql database on an RDS instance.
My table schema is:
Table: users, Columns:
_id - int(11) AI PK
username - varchar(50) UNIQUE
email - varchar(100) UNIQUE
Im then using the following SQL statement to attempt to enter a new record
INSERT INTO usrdb.users (username, email)
VALUES ("admin", "admin@test.com")
This statement just times out (30 seconds) repeatedly.
I know from experience that a simple insert statement shouldn't take anywhere near this length of time.