|
hi, im creating a new website busing dw8 but hit a snag, the site is basic asp linked to a access db, when i try to preview the site i get this error
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot open the file '(unknown)'. It is already opened exclusively by another user, or you need permission to view its data.
/photo gallery/index.asp, line 8
and line 8 refers to the database connection
Set rsPhotos = Server.CreateObject("ADODB.Recordset")
rsPhotos.ActiveConnection = MM_conGallery_STRING
rsPhotos.Source = "SELECT * FROM Images"
rsPhotos.CursorType = 0
rsPhotos.CursorLocation = 2
rsPhotos.LockType = 1
rsPhotos.Open()
i thought it was a permissions problem but my db and all files have the correct permissions set. The only difference between this site and others ive done is this is my first using dw8, i used dw mx in the past.
|