I have been looking around for a while and the only way I have found to compact and repair an MS Access database through ASP.NET is by using either DAO or ADO, which are pre-dot NET.
I have noticed in my OLE DB connection strings created by Visual Studio .NET there are properties like:
Jet OLEDB:Compact Without Replica Repair=false;
Jet OLEDB:Don't Copy Locale on Compact=false;
Does this mean that .NET takes care of compact & repair operations for you, or is there a way to use ADO.NET to do this?
Basically I am asking because I am developing a forum system and have to use MS Access as the backend, and even though the usage is fairly light all my tests show the database will need regular compact and repair operations to keep in good working order.
Cheers guys,
Adam