ADODB.Field error '800a0cb3'

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

  1. #1

    Default ADODB.Field error '800a0cb3'

    I tried to modify the field in my ASP page, and it yields the following
    error:

    I tried to use adLockOptimistic as follows, but still not working
    objRS.Open "pressrelease", objConn, adOpenDynamic, adLockOptimistic
    ADODB.Field error '800a0cb3'

    Current Recordset does not support updating. This may be a limitation of the
    provider, or of the selected locktype.

    any ideas? thanks


    Matthew Louden Guest

  2. Similar Questions and Discussions

    1. Help with ADODB.Recordset Error (0x800A0BB9)
      Hello, I'm having problems resolving ADODB.Recordset Error 0x800A0BB9. I'm running tutorial code from the Wrox Press book: Beginning ASP 3.0; Ch....
    2. ADODB.Connection error '800a0046'
      I am receiving the following error: ADODB.Connection error '800a0046' Permission Denied Here is my connection string on my web page: <% Dim...
    3. #25481 [Opn->Bgs]: ADOdb -> fields error
      ID: 25481 Updated by: sniper@php.net Reported By: zerokode at gmx dot net -Status: Open +Status: ...
    4. ADODB.Fields error '800a0bb9' in asp
      Im getting the error ADODB.Fields error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one...
    5. ADODB.Field error '80020009
      Hello, I need help When I execute the following asp, I have the error message: ------------------------------- ADODB.Field error '80020009'...
  3. #2

    Default ADODB.Field error '800a0cb3'

    I tried to modify the field in my ASP page, and it yields the following
    error:

    I tried to use adLockOptimistic as follows, but still not working
    objRS.Open "pressrelease", objConn, adOpenDynamic, adLockOptimistic
    ADODB.Field error '800a0cb3'

    Current Recordset does not support updating. This may be a limitation of the
    provider, or of the selected locktype.

    any ideas? thanks


    Matthew Louden Guest

  4. #3

    Default Re: ADODB.Field error '800a0cb3'

    Matthew Louden wrote:
    > I tried to modify the field in my ASP page, and it yields the
    > following error:
    >
    > I tried to use adLockOptimistic as follows, but still not working
    > objRS.Open "pressrelease", objConn, adOpenDynamic, adLockOptimistic
    > ADODB.Field error '800a0cb3'
    >
    > Current Recordset does not support updating. This may be a limitation
    > of the provider, or of the selected locktype.
    >
    > any ideas? thanks
    We'll need a little more information than that:

    Database type and version

    The code you used to generate the error.

    If it's an Access database, this may be relevant:
    [url]http://www.aspfaq.com/show.asp?id=2062[/url]

    But the error message is puzzling.

    You should not be using a recordset to modify your data. You should be using
    SQL DML statements (UPDATE, INSERT and DELETE), preferably encapsulated in
    stored procedures or saved parameter queries. see these links to see how
    easy it is:
    [url]http://tinyurl.com/qg4o[/url]
    [url]http://tinyurl.com/qg3u[/url]
    [url]http://tinyurl.com/qg47[/url]
    [url]http://tinyurl.com/qg4j[/url]

    HTH,
    Bob Barrows


    Bob Barrows Guest

  5. #4

    Default Re: ADODB.Field error '800a0cb3'

    Matthew Louden wrote:
    > I tried to modify the field in my ASP page, and it yields the
    > following error:
    >
    > I tried to use adLockOptimistic as follows, but still not working
    > objRS.Open "pressrelease", objConn, adOpenDynamic, adLockOptimistic
    > ADODB.Field error '800a0cb3'
    >
    > Current Recordset does not support updating. This may be a limitation
    > of the provider, or of the selected locktype.
    >
    > any ideas? thanks
    We'll need a little more information than that:

    Database type and version

    The code you used to generate the error.

    If it's an Access database, this may be relevant:
    [url]http://www.aspfaq.com/show.asp?id=2062[/url]

    But the error message is puzzling.

    You should not be using a recordset to modify your data. You should be using
    SQL DML statements (UPDATE, INSERT and DELETE), preferably encapsulated in
    stored procedures or saved parameter queries. see these links to see how
    easy it is:
    [url]http://tinyurl.com/qg4o[/url]
    [url]http://tinyurl.com/qg3u[/url]
    [url]http://tinyurl.com/qg47[/url]
    [url]http://tinyurl.com/qg4j[/url]

    HTH,
    Bob Barrows


    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