I am trying to delete records from a mdb based on the value of a variable, but
it doesn't seem to do any kind of updating. . . here is the sequence
(ADO connection)
'clear "old" data (for any given month)
cmdPopulate.CommandType = adCmdText
cmdPopulate.CommandText = "delete from Means2 where Update_Date= #" +
stFiledata1 + "#;"
cmdPopulate.Execute
Operator_Services.Refresh
if anyone has any idea why this isn't deleting any files is I would appreciate
any advice. . . note: the field Update_Date is a Date type field in Access
TIA
Mike Hughes