On Fri, Aug 01, 2003 at 03:27:47PM +0200, Andreas.Mock wrote: > 2) preparing insert statement is ok. > Then, if I provide a null value as 'undef'(sure without quotes) > to a bind variable the String 'null' gets inserted to the database > table. But I want a real NULL value. I can't understand this behaviour.
Show us your code. I suspect you are mistakenly combining $dbh->quote() with placeholders. You should not call $dbh->quote() on a value you are binding to a placeholder. Ronald
