Database or Object is Read Only - I dont have front page installed

Discussion in 'Databases' started by vishwa, May 14, 2005.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. HiAll,
    I know this question has been asked several times,
    but I have the same issue that lots of people had.

    I get the
    Mcrosoft OLE DB Provider for ODBC Drivers error '80004005'



    [Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or object is read-only.


    Error, I checked the account, and Frontpage extensions are not installed.


    This is my code


    Set Connect = CreateObject ("ADODB.Connection")
    Set rsAddComments = Server.CreateObject("ADODB.Recordset")
    Connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("\_database\xtreme.mdb") & ";Mode=ReadWrite|Share Deny None;"
    Connect.Open connstr
    rsAddComments.Open "submissions", Connect,2,3,2
    rsAddComments.AddNew
    rsAddComments.Fields("name") = sname


    I am not sure what else to do, somebody please help.


    Thanks


    -vishwa
     
  2. Got it..

    I just installed Frontpage extensions and Removed it.

    That fixed the problem

    -vishwa
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page