<div dir="ltr"><div>Hello, <br><br></div>I'm getting an error using a dml statement which I *can't* figure out:<br><div><div><br>Length mismatch in INSERT field specification (4 vs. 3)<br><br></div><div>I'm not sure why as the number of fields in my table definition are the same as the ones in my INSERT satement:<br></div><div><br>table tblEmployers : {Id: int, Description: string, From: time, To: time}<br><br>fun add r = nextid <- nextval uidEmployer;<br>                    dml(INSERT INTO tblEmployers (Id, Description, From, To)<br>                            VALUES ({[nextid]}, {[r.Description]}, {[r.From]}, {[r.To]}));<br><br></div><div>Is there something obvious that I'm not seeing?<br><br></div><div>Thank you!<br></div></div></div>