http://qs321.pair.com?node_id=582308


in reply to class-dbi-mysql and null values

I found a resolution. Its actually quite simple: just test for the length of the owner parameter and explicity asign undef if the length is 0.
if (length($owner) > 0) { $case->owner( $q->param('owner') ); } else { $case->owner( undef ); }
Thanks for you assistance,
davidj

Replies are listed 'Best First'.
Re^2: class-dbi-mysql and null values
by davidrw (Prior) on Nov 05, 2006 at 13:19 UTC