Windows error 0x80630002, -2140995582

Detailed Error Information

PEER_E_NOT_INITIALIZED[1]

MessageThe compoment has not been initialized.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode99 (0x063)
NameFACILITY_P2P[1]
Error Code2 (0x0002)

Questions

3votes
1answer

IO Error when using localStorage on Firefox 29+?

I am using localStorage in a very basic manner in an internal application. Its only storing a simple string value "newest" or "oldest": localStorage.setItem('sortOrder', val) But for some reason, certain users are throwing the following errors in Firefox: Component returned failure code: 0x80630002 (NS_ERROR_STORAGE_IOERR) [nsIDOMStorage.getItem] Component returned failure code: 0x80004005 [...] read more
javascript
html
firefox
local-storage
2votes
2answers

Right way of inserting data into SQLite db iPhone

How to insert data into table in sqlite iPhone? I am trying following, but its failing: NSString *query=[NSString stringWithFormat:@"insert into %@ (name) values ('%@')", table name,myName ]; sqlite3 *database; sqlite3_stmt *createStmt = nil; if (sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK) { if (createStmt == nil) { if (sqlite3_prepare_v2(database, [query UTF8String], -1, [...] read more
iphone
objective-c
ios
sqlite
firefox
1vote
1answer

No website is able to use localStorage in firefox, error "SQLite encountered an IO error"

One of the web apps I used complained that it couldn't use localStorage. To test if this was correct, I opened devtools and tried to execute localStorage.setItem('testkey', 'testval'). I got the following error: [Exception... "SQLite encountered an IO error" nsresult: "0x80630002 (NS_ERROR_STORAGE_IOERR)" location: "JS frame :: debugger eval code :: [...] read more
firefox

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0