Could not save(modify) record

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

  1. #1

    Default Could not save(modify) record

    Hi

    I'm developing an online shopping cart. When user modifies
    a record, it generates following error:

    Microsoft OLE DB Provider for ODBC Drivers
    error '80004005'

    [Microsoft][ODBC Microsoft Access Driver] Could not save;
    currently locked by user 'admin' on machine 'XYZ'.

    ...../addProduct.asp, line 60

    This error does not appear on each record but, on some of
    the records. Others modify successfully. I dont know
    what's happening.

    Regards
    Sajid


    Sajid Guest

  2. Similar Questions and Discussions

    1. Can't delete .LCK files, so can't modify or save anychanges!
      I am having a huge problem with .LCK files. I thought that these could only be generated in Contribute, but suddenly several of the directories in...
    2. Creating button to Save Record and Close Form
      Use the VB Editor window to add a line as follows: Docmd.Close acform, Me.Name The line should be added immediately after the save command...
    3. disable save record on a Continuous Forms
      "Adelin C." <adelin.champagne@hrdc-drhc.gc.ca> wrote in message news:0c3c01c356a8$34bcaaa0$a501280a@phx.gbl... If you don't want the user to make...
    4. Force continuous from to commit/save record
      Hi, Background Explained: I've got a quite complex set of 12 tabbed sub-forms on 1 master form for data entry of about 600 variables from...
    5. Save record in subform
      I do a after update event in a field in a subform (multiple payments to a job). Then I have it requery to calculate the balance due. When I do the...
  3. #2

    Default Re: Could not save(modify) record

    Where is the CODE that modified the record? Are you using an
    ADODB.Recordset object, and rs.update methodology? Or are you using a
    direct UPDATE statement, or a stored query?

    Who is the admin user on machine XYZ? Is it possible someone has the MDB
    file open on their machine?

    Are you closing/destroying your recordset/connection objects on every page?

    --
    Aaron Bertrand
    SQL Server MVP
    [url]http://www.aspfaq.com/[/url]




    "Sajid" <sajid622@hotmail.com> wrote in message
    news:04ae01c3c2fa$74874320$a501280a@phx.gbl...
    > Hi
    >
    > I'm developing an online shopping cart. When user modifies
    > a record, it generates following error:
    >
    > Microsoft OLE DB Provider for ODBC Drivers
    > error '80004005'
    >
    > [Microsoft][ODBC Microsoft Access Driver] Could not save;
    > currently locked by user 'admin' on machine 'XYZ'.
    >
    > ..../addProduct.asp, line 60
    >
    > This error does not appear on each record but, on some of
    > the records. Others modify successfully. I dont know
    > what's happening.
    >
    > Regards
    > Sajid
    >
    >

    Aaron Bertrand - MVP Guest

  4. #3

    Default Re: Could not save(modify) record

    On Mon, 15 Dec 2003 02:59:04 -0800, "Sajid" <sajid622@hotmail.com>
    wrote:
    >Hi
    >
    >I'm developing an online shopping cart. When user modifies
    >a record, it generates following error:
    >
    >Microsoft OLE DB Provider for ODBC Drivers
    >error '80004005'
    >
    >[Microsoft][ODBC Microsoft Access Driver] Could not save;
    >currently locked by user 'admin' on machine 'XYZ'.
    >
    >..../addProduct.asp, line 60
    >
    >This error does not appear on each record but, on some of
    >the records. Others modify successfully. I dont know
    >what's happening.
    FAQ:

    Why do I get database-related 80004005 errors?
    [url]http://www.aspfaq.com/show.asp?id=2009[/url]

    Jeff
    Jeff Cochran 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