Updating Access DB in ASP

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Updating Access DB in ASP

    I am trying to resolve the following error message when
    trying to update an Access 2000 database in ASP:

    Microsoft JET Database Engine (0x80040E09)
    Cannot update. Database or object is read-only.

    The environment is XP Professional, IIS 5.0, and Access
    2000 all running on the same processor. Eventually, I
    want to move this application to my website. All
    information and suggestions will be welcomed.

    John
    jcfrykland Guest

  2. Similar Questions and Discussions

    1. MS Access Database not Updating
      Hi, I am working on creating dynamic home pages with Coldfusion MX on the server, Dreamweaver for developing and Microsoft Access as the backend...
    2. Updating MS Access Query
      Can you update a MS Access Query (its simply a join of two tables) using a form and <cfupdate>, or do you have to update the underlying tables. I...
    3. SQL not Updating Access Database
      Hi, I have an ASP page that updates an Access 2000 database. It doesnt seem to update the date field of the table. Here is the SQL: Update...
    4. Access db not updating.
      My client moved to a new server now my asp code will not update his Access mdb. There are no error messages.
    5. Updating a remote web Access DB
      Here's one possible scenario: 1. Create an ASP page that allows the user to upload the datafile. 2. Create another ASP page that has a link...
  3. #2

    Default Re: Updating Access DB in ASP

    Have you tried doing this using SQL ?

    I had loads of problems doing something similar, I now use straight SQL,
    i.e.

    Update mytable set myfield = 'mydate' where x = 1

    or inserts:

    Insert into mytable (field1, field2) values (value1, value2)

    Maybe this won't solver your problem, but it solved mine, hope it helps you.

    Chris


    Chris Leonard Guest

  4. #3

    Default Re: Updating Access DB in ASP

    [url]http://www.aspfaq.com/show.asp?id=2326[/url]
    jcfrykland wrote:
    > I am trying to resolve the following error message when
    > trying to update an Access 2000 database in ASP:
    >
    > Microsoft JET Database Engine (0x80040E09)
    > Cannot update. Database or object is read-only.
    >
    > The environment is XP Professional, IIS 5.0, and Access
    > 2000 all running on the same processor. Eventually, I
    > want to move this application to my website. All
    > information and suggestions will be welcomed.
    >
    > John


    Bob Barrows Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139