I thought that was the case, that you left the ID field blank on the insert.
But when I did so, the insert failed. When I put in the number, it worked.
I found some other bugs and fixed them and haven't tried since I fixed them all. I will try again.
I have already gotten up to 1003 on my ID field.
Just so I understand correctly. I should do this:
table stkpickr (ID int not null primary key auto_increment, etc,etc, etc) // 4 fields in table
insert into strpickr(etc,etc, etc, etc) values(etc, etc,etc) // 3 fields in insert statement
Talk about the eureka experience.................
I surmise that you leave off the ID in the first part.
I am used to using the APPEND records in C++ Builder and always put all fields in it. The not null primary key was the problem.
Thanx again for the help