angular2-indexeddb icon indicating copy to clipboard operation
angular2-indexeddb copied to clipboard

angular2-indexeddb is a library that wraps indexeddb database in an Angular service.

Results 12 angular2-indexeddb issues
Sort by recently updated
recently updated
newest added

Here is my openDatabase `openDatabase(tableName: string,tableColumns: string[], indexedDBObj: AngularIndexedDB){ //Create DB Version 1 indexedDBObj.openDatabase(indexedDBObj.dbWrapper.dbVersion, (evt) => { let objectStore = evt.currentTarget.result.createObjectStore(tableName, { keyPath: "Id", autoIncrement: true }); tableColumns.forEach(col => {...

Getting following errors on build of the project. node_modules\angular2-indexeddb\angular2-indexeddb.ts:77:59 Cannot find name 'IDBCursorDirection'. [default] node_modules\angular2-indexeddb\angular2-indexeddb.ts:282:61 Cannot find name 'IDBTransactionMode'. [default] Checking finished with 2 errors Following is the package.json details...

I got this error when using with angular 6.0: > ERROR in ./node_modules/angular2-indexeddb/index.ts Module build failed: Error: ....\ui\node_modules\angular2-indexeddb\index.ts is missing from the TypeScript compilation. Please make sure it is in...

Hey When using the library I noticed that "clear()" in the angular2-indexeddb.ts has multiple resolve() as seen in the picture. From what I have read and experienced, the lower one...

Hi, i have some problem when i am creating new store in existing indexed db. it is not created after i have deleted the existing db in the browser ....

I've been trying to use add() to insert into the DB but I get a [object DOMException]: {code:0, message:"DataError", name:"DataError"} exception every time its called. I saw a previous issue...

my 'ng build --prod' keep fail. 'ng build --prod' error message: ERROR in : Can't resolve all parameters for AngularIndexedDB in C:/.../node_modules/angular2-indexeddb/angular2-indexeddb.ts: (?, ?). same as my 'ng serve' error...

I just can’t get the add to work in edge. Do you have working code I can look at.

This could be useful for checking some things in db before querying. For instance I am checking if db has store before proceeding further.