in reply to Re: class-dbi-mysql and null values
in thread class-dbi-mysql and null values

Depending on your data (e.g. if it's ok to null out a 0), you could simply do:
$case->owner( $owner || undef );
This is great writeup on what counts as false: True or False? A Quick Reference Guide