I'm trying to delete a table with
db.execute DROP TABLE tempTable
I've tried first clearing the RecordSource of the forms that use tempTable
like this:
Me!RecordSource = ""
But it does not seem to help. I still get this error:
Error Number 3211: The database engine could not lock table 'tempTable'
because it is already in use by another person or process.
Is there a way to force drop this table? Or kill whatever has a lock on it?