I have one insert statement which is supposed to produce one record in the database, but instead it produces two. My program is simple in that I open the database, do one insert, and close the database.
The two records are identical except for the auto-incremented integer which is a primary key, and one of the columns containing a unix timestamp integer value inserted as simply an integer. I obtain the value before trying INSERT and try INSERT only once (verified by before and after print values) .
It is a mystery how the constant value for the time can change between the two records while I cannot locate where the second record is being written.
Please Help ....
The two records are identical except for the auto-incremented integer which is a primary key, and one of the columns containing a unix timestamp integer value inserted as simply an integer. I obtain the value before trying INSERT and try INSERT only once (verified by before and after print values) .
It is a mystery how the constant value for the time can change between the two records while I cannot locate where the second record is being written.
Please Help ....