Having just splashed out 50 bucks, the + insert SQL statement (MySQL, PDO) is not including the PK field (first column on the grid). Reinstalled the free version and it's fine, back to the paid-for version and it fails again.
A wasted couple of hours… Grrrr – Tony
2 Answers
First field in column definition array is by-default skipped from INSERT query (assuming to be primary key and auto increment).
If you wish to include it in INSERT sql (non auto increment) you can set:
$col["autoid"] = false;
Your Answer