The deal is that when the coldfusion extensiongenerates the code, the
code that it generates ignores the primarykey table and thus doesn't
insert the new record into the database.If I go back and adjust the
wizard manually, I can make it work bymanually making the insert
statement address the primary key columnExample of Generated code:Insert
into table(fname, mName, lName) values('scott','d','Hoff')What I need to
insert the code:Insert into table(primaryKey, fName, mName,
lName)values('1(random...