Does anybody know how to save a null value back to a ADO recordset in a fivewin app.
oRs:Fields("MyDateTime"):Value := null //does not work
oConn:Execute( "update MyTable set MyDateTime=null where keyno=123" )
The sql command works but because I am using it inside a column browse there is a lot of work related to re-syncing the recordset and re-displaying within the browse.
Byron ...