How can I store null date in a field which is of type datetime ?
I've tried rs("applyDate") = "", it didn't work !!!
Printable View
How can I store null date in a field which is of type datetime ?
I've tried rs("applyDate") = "", it didn't work !!!
Make sure the field accepts Null values, then do this:
rs("applyDate") = Null
Tom Cannaerts
[email protected]
The best way to escape a problem, is to solve it.