Windows error 0x80630001, -2140995583

Detailed Error Information

PEER_E_IPV6_NOT_INSTALLED[1]

MessageThe IPv6 protocol is not installed.
Declared inwinerror.h

HRESULT analysis[2]

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

Questions

0votes
0answers

SQLite storage API Insert statement freezes entire firefox in bootstrapped(Restartless) AddOn

Data to be inserted has just two TEXT columns whose individual length don't even exceed 256. I initially used executeSimpleSQL since I didn't need to get any results. It worked for simulataneous inserts of upto 20K smoothly i.e. in the bakground no lag or freezing observed. However, with 0.1 million [...] read more
sqlite
firefox
firefox-addon
firefox-addon-restartless
0votes
1answer

Firefox Extension SQLite - Update/Delete query

In my firefox extension I'm trying to make an Update statement, but I've getting back this error Error: Component returned failure code: 0x80630001 (NS_ERROR_STORAGE_BUSY) [mozIStorageConnection.executeSimpleSQL] Insert/Select statements works fine, but Update and Delete are not working. Code: Components.utils.import("resource://gre/modules/Services.jsm"); Components.utils.import("resource://gre/modules/FileUtils.jsm"); ... this.dbFile = FileUtils.getFile("ProfD", [Source.globalValue.DB_NAME+".sqlite"]); this.db = Services.storage.openDatabase(this.dbFile); ... /* #1 [...] read more
javascript
sqlite
firefox-addon

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