Yes there is no "Save As" with ADO.NET and Access database.
Possible options:
1. Like poster indicated above, make a physical copy of the database.
2. Create a new database and copy the tables into the new database, see for example:
http://www.codeguru.com/vb/gen/vb_database/microsoftaccess/article.php/c5149/
Note a little known tsql trick to copy table from one database to another (works with Jet provider):
"insert into [c:\db1.mdb].[table1] select * from [c:\db2.mdb].[table1]"
Matt
|