in reply to Need help with Insert
That warning means that one of your $row[x] is undef and that it got treated as a zero-length string.
Using placeholders — see "Placeholders and Bind Values" in the DBI docs — will avoid this problem and many others. You shouldn't be interpolating variables into an SQL query when it can be avoided (as it can here).
|
|---|