> How to i insert a null field into a ms sql 2005 date/time field? If you're using cfqueryparam use it's null attribute
INSERT INTO TheTable (TheColumn) VALUES ( <cfqueryparam null="true" ... > ) Or insert the keyword NULL INSERT INTO TheTable (TheColumn) VALUES ( NULL ) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292862 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

