Ask a Question related to ASP Database, Design and Development.
-
Matthew Louden #1
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
-
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.... -
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... -
#25481 [Opn->Bgs]: ADOdb -> fields error
ID: 25481 Updated by: sniper@php.net Reported By: zerokode at gmx dot net -Status: Open +Status: ... -
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... -
ADODB.Field error '80020009
Hello, I need help When I execute the following asp, I have the error message: ------------------------------- ADODB.Field error '80020009'... -
Matthew Louden #2
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
-
Bob Barrows #3
Re: ADODB.Field error '800a0cb3'
Matthew Louden wrote:
We'll need a little more information than that:> 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
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
-
Bob Barrows #4
Re: ADODB.Field error '800a0cb3'
Matthew Louden wrote:
We'll need a little more information than that:> 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
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



Reply With Quote

