in reply to Re: It won't insert
in thread Problem with insert using DBI

INSERT INTO table SET column1=value1, column2=value2, ...

depends on the RDBMS: for instance, Oracle's Insert statement is:

INSERT INTO table (column1,column2,...) VALUES (value1,value2,...)

rdfield