I want to access a database located in a cd rom. As you can imagine the database file (mdb ) is in readonly mode since its located at the cd rom. I use the following code to establish a connection string
strConnection = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=E:\JSNWind.mdb"
Conn.Open strConnection
Conn.Close
set Conn = Nothing
Its get me an errors says that "The Microsoft Jet database engine cannot open the file 'E:\JSNWind.mdb'. It is already opened exclusively by another user, or you need permission to view its data."
Can you help ??
strConnection = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=E:\JSNWind.mdb"
Conn.Open strConnection
Conn.Close
set Conn = Nothing
Its get me an errors says that "The Microsoft Jet database engine cannot open the file 'E:\JSNWind.mdb'. It is already opened exclusively by another user, or you need permission to view its data."
Can you help ??