That probably means that your id is an AUTO_INCREMENT integer and you’re trying to send a string. You should specify a column list and omit it from your INSERT.
INSERT INTO workorders (column1, column2) VALUES (?, ?)
That probably means that your id is an AUTO_INCREMENT integer and you’re trying to send a string. You should specify a column list and omit it from your INSERT.
INSERT INTO workorders (column1, column2) VALUES (?, ?)