Is there a way to get CF9 ORM to insert NULL Values into the database rather than an empty string?
I've got a numeric field which can be null, but throws an error because it's trying to enter ''.
|
Is there a way to get CF9 ORM to insert NULL Values into the database rather than an empty string? I've got a numeric field which can be null, but throws an error because it's trying to enter ''. |
||||
|
|
|
Either:
or, add a removeNumber method:
|
|||||||||||
|
|
A trick I learned somewhere along the way. It's slower to call a ton of JavaCast("null","")'s than it is to call:
|
|||
|
|