ASP FAQ Tutorials 8000XXXX Errors
ASP.NET 2.0
Classic ASP 1.0
Databases
General Concepts
Search Engine Optimization (SEO)
| ASP FAQ Tutorials :: 8000XXXX Errors :: Why do I get 800a0cb3 errors?
Why do I get 800a0cb3 errors?
There are several text messages that go along with 0x800a0cb3 errors: Object or provider is not capable of performing requested operation. The operation requested by the application is not supported by the provider. Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype. Unknown runtime error. | Depending on which error message you are receiving, one of the following is probably true: - you are using named constants (e.g. adUseClient) but forgot to include ADOVBS.INC (see Article #2102 and Article #2112)
- you tried to use the NextRecordset() method to process multiple resultsets from an Access provider (see KB #202433)
- you tried to combine server-side recordset properties, e.g. cachesize, with a client-side (adUseClient) recordset - make sure the properties you are using make sense for the type of recordset you've opened
- you tried to use advanced methods or properties such as bookmark, MovePrevious, or AbsolutePage on default recordset objects - make sure you set the correct lockType and/or cursorLocation (depending on what you are doing, see Article #2120, Article #2193 or Article #2243)
- you tried to retrieve the primary key using ADOX (see KB #294157)
- you are trying to use an ADODB.Recordset object with an improper lock type to handle an update or addnew - use an UPDATE or INSERT statement instead of a Recordset object (see Article #2191 and KB #255707).
- you are using an ADOX.Catalog object (or one of several other potential objects), and tried to close it. All you have to do is set a catalog object to nothing... it does not have a close() method.
Related Articles Why do I get 8002000A errors?
Why do I get 80040200 / 80040514 / 800A0E7A errors?
Why do I get 80040e09 errors?
Why do I get 80040E0C errors?
Why do I get 80040E10 errors?
Why do I get 80040E14 errors?
Why do I get 80040E21 errors?
Why do I get 80040E23 errors?
Why do I get 80040E24 errors?
Why do I get 80040E2F errors?
Why do I get 80040e30 errors?
Why do I get 80040E31 errors?
Why do I get 80040E37 errors?
Why do I get 80040e4e errors?
Why do I get 80040E54 errors?
Why do I get 80040E57 / 80040E07 errors?
Why do I get 8004D00A errors?
Why do I get 80070070 errors?
Why do I get 800A01FB errors?
Why do I get 800A0BB9 / 800A1391 errors?
Why do I get 800A0C93 errors?
Why do I get 800A0CC1 errors?
Why do I get 800A0E78 errors?
Why do I get 800A0E7C errors?
Why do I get 800A0E7D errors?
80004005 Errors
Can I use the NZ() function without getting 80040E14 errors?
|