IndexedDB is a new standard for client side storage in the browser. It is not a relational database, but instead stores JavaScript objects. The "Index" part of the name refers to the ability to select a data field as an "index" and then search the object store based on that data field.

learn more… | top users | synonyms

1
vote
0answers
22 views

Best way to include data (that will populate IndexedDB) with offline HTML5 app?

I'm building an offline HTML5 app (it will be delivered as a zipped up .crx file). It will be installed and used entirely offline. At no point will there be internet access. AFAIK, there is no way to ...
0
votes
0answers
32 views

IndexedDB handle data migration onupgradeneeded

i'm developing a offline-webapplication with IndexedDB. So I thought a lot about data migration in case of a version change. For example, I had 3 ObjectStores in DB Version 3. Now i noticed, that i ...
0
votes
1answer
28 views

How do I do an JOIN-type query in IndexedDB

I have tried following the tutorial at http://hacks.mozilla.org/2010/06/comparing-indexeddb-and-webdatabase/ with regards to doing queries in IndexedDB, but their example does not work. How to I do a ...
0
votes
1answer
10 views

in indexed database, how to get a keysList in which key start with “some string”?

function fetchEmployeeByEmail() { try { var result = document.getElementById("result"); result.innerHTML = ""; if (localDatabase != null && localDatabase.db != null) { ...
3
votes
2answers
41 views

Indexed DB cursor ranges on mulitiple properties

I have a composite index of two properties on an indexeddb objectstore and wish to retrieve a cursor based on the range of both of these properties. Here's an example object in the store : ...
2
votes
1answer
73 views

Javascript: Searching indexeddb using multiple indexes

I want to change from WebSql to Indexeddb. However, how would one do SQL queries like SELECT * FROM customers WHERE ssn = '444-44-4444' and emal = 'bill@bill@company.com' SELECT * FROM customers ...
0
votes
1answer
84 views

Is there a GOOD way to use Angular.js and Indexed DB?

So, I'm developing a javascript + api forum software. My point in this is so that you can read a forum while offline -- this involves HTML5's offline-storage. In particular, I would like to use ...
0
votes
1answer
25 views

Is it possible to include a pre-populated indexedDB or does it need to be populated client-side?

I want to have make an offline app that will have data stored in indexedDB. I want to have that per-populated instead of requiring the javascript to add all that data on first run. Is this possible?
1
vote
0answers
22 views

Does the storage limit (on IndexedDB or localStorage) apply for local apps running off the computer?

If I write a web app that will run in Chrome or Firefox and uses IndexedDB (or localStorage), but it's not hosted anywhere and instead is run by the user double-clicking a local ".html" file, will the ...
0
votes
1answer
30 views

Jaydata indexedDb database creation issues

I have this problem on jayData: I try to create this simple database: var x=$data.Entity.extend("Person", { ID: {type: "int", key:true, required: true}, Name: {type: "string", required: true} }); ...
0
votes
1answer
27 views

Indexeddb - Update record by index key

I have an object store with keypath "id" (autoincrement), and a unique index on that store with keypath "myId" that is generated from a server. When I need to update a record, I won't have "id" ...
-1
votes
1answer
38 views

Why IndexedDB is not available in node.js? [closed]

IndexedDB API on node.js will be very useful for some app. Why IndexedDB is not available in node.js? IndexedDB API does not depend on DOM, even though it does use some DOM error and event style.
0
votes
0answers
21 views

Lawnchair in windows 8 store app

I am using Lawnchair in my windows 8 store app with IndexedDB adapter (i have added lawnchai.js and indexed-db.js to my js folder) as i need the data to persist. the data gets saved and can be ...
0
votes
2answers
33 views

onsuccess and oncomplete call back is not working for indexedDb add transaction

I am trying to have a function in the onsuccess callback for IndexedDb add transaction, but for some reason the onsuccess callback is never called. I basically tried to add a movie object to the ...
0
votes
1answer
14 views

create a index with a complex json structure using indexeddb

I want to create an index when i store data using indexeddb. But I have a structure json like like this: {"query": {"page": {"4558": ...
1
vote
1answer
25 views

Is there a way to be notified when objects in an IndexedDB ObjectStore gets inserted/updated/deleted?

I only see an event that fires on schema updates, is there any notification mechanism for data changes in IndexedDB?
0
votes
1answer
68 views

IndexedDB - Storing and Retrieving Videos

I'm trying to make an application that stores and retrieves Video files to and from IndexedDB. However, I am having issues while retrieving in Firefox and while storing in Chrome. I'll post the code: ...
0
votes
2answers
45 views

IndexedDB DOM IDBDatabase Exception 11 even after using oncomplete

I am very new to IndexedDB Concepts. I am trying to Store a list of movies in the IndexedDB and retrieve it. But for some reason when i try to retrieve it there is a DOM IDBDatabase Exception 11 in ...
0
votes
1answer
45 views

Is it possible to embed a video stored as a blob in IndexedDB?

I'm writing a web app that lives locally on a desktop computer and can be run in either Firefox or Chrome. It uses HTML5 and the local database storage: IndexedDB. The users need to be able to ...
0
votes
1answer
45 views

Can local files in IE10 use IndexedDB?

I'm trying to write a web app that can be run locally without internet and stores info on the local filesystem and is run in the browser. My code works in Chrome and Firefox but in IE10 I get the ...
0
votes
1answer
50 views

HTML5 - Large Blob and persistent local storage

Been looking for an up-to-date answer to this but am at the end of my rope: is there currently a way to persistently store large amounts of binary data? (A Blob or or ArrayBuffer, >100MB ) Things ...
0
votes
1answer
25 views

guarantee consistency of data with more transactions

I'm writing a webapp that needs a database. IndexedDB and websql transactions needs to be short and I read that it's better to get all data from the server and then open a transaction and write all ...
0
votes
2answers
50 views

YDN-DB - How to update a record by id?

I'm using YDN-DB as my indexeddb wrapper; I've read the user guide and api, and have absolutely no idea how you'd update a record by id (primary key [auto incremented]). Is anyone familiar with ...
1
vote
1answer
93 views

Indexeddb in Chrome on IOS - when available?

Does anyone know when or how Indexeddb will be available in Chrome on IOS? Indexeddb works well in mobile Chrome on Android devices!
-2
votes
0answers
162 views

What is the best JavaScript library to wrap HTML5 indexeddb?

I already found one jQuery plugin to use indexeddb but I wonder if there is a better library to do this, I mean better documentation with more functions and more easy to use. jQuery Plugin : ...
1
vote
1answer
40 views

IndexedDB error with jaydata - A mutation operation was attempted on a database that did not allow mutations

I have 2 DBs. I want to clear the DB and add new contents. I am using following method. function updateDB(db, dbInstance, newElements) { return dbInstance.forEach(function(oldElement) { ...
1
vote
2answers
34 views

Easy WebSQL to Indexed migration

I have a completed phonegap app that runs on Android currently, the DB is written using WebSQL. I've been tasked with porting the app to Windows Phone - the app falls apart due to not supporting ...
0
votes
0answers
59 views

Can you encrypt data in an offline HTML5 database?

Encryption is mentioned zero times in the WebSQL and IndexedDB specs. Similar, but incomplete, questions are here, here, here. I was wondering if you could encrypt the data on the server so that the ...
0
votes
1answer
84 views

Metro Apps - SQLite vs Indexed Db

I am about to start working on a metro app using JavaScript/HTML which will store data locally, when no internet connection is there and also planning to port the same on other platform's later. What ...
1
vote
1answer
69 views

JayData saveChanges() error with IndexedDB

I'm having trouble deleting data from IndexedDb. The methods works fine with WebSql but throws an error with IndexedDb. Initial population seems to work ok. This error is in Chrome: Uncaught ...
0
votes
1answer
104 views

How to make offline maps(using leaflet OSM) , by caching?

I am trying to make offline maps through caching (IndexedDB) in browser. I understand the concept is that I download and store the tiles of map first when connected to internet. Then I have to load ...
0
votes
1answer
271 views

Uncaught Error: NotFoundError: DOM IDBDatabase Exception 8

I am having a strange issue with using indexeddb API in Javascript. The code below generate the error in the subject line: var notesdisplay, db; function initiate(){ notesdisplay = ...
1
vote
1answer
65 views

How to search indexeddb for a string

I am trying to set up a search feature on my site, i'm trying to find IndexedDB code for SELECT "column" FROM "table" WHERE "column" LIKE "%keyword%" i found a solution in IndexedDB Fuzzy Search ...
1
vote
1answer
60 views

Modifying manifest file deletes indexdb in windows 8 metro app

My app(windows 8 metro, using javascript) uses indexDb for database, i have seen when i modify manifest file indexDB database is deleted. Is this a bug or a feature??. Now my app is already in ...
0
votes
0answers
54 views

javascript - handling 'UnknownError'

I'm writing error handling code for my web application. Currently I'm testing saving blob to object store when there is no sufficient privileges for reading from the file: ...
1
vote
2answers
84 views

How can I remove a whole IndexedDB database (from JavaScript)?

How can one remove a whole IndexedDB database, as opposed to just an object store? Preferably I'd like to be able to do this from JavaScript, but if this isn't possible I wouldn't mind knowing how to ...
0
votes
1answer
71 views

What is the meaning of Chrome's IndexedDB error “Internal error checking key existence”?

I'm getting this error message intermittently within a relatively large project at seemingly arbitrary times (which makes me suspect a race condition somewhere...), so I unfortunately don't have a ...
1
vote
2answers
64 views

Why does empty IndexedDB still take up space?

I'm using an IndexedDB for saving game data in Chrome. An average game is about 4MB. After saving a few games, and then deleting them, the dev console's 'Resources' tab shows that my indexedDB is ...
0
votes
2answers
62 views

How to detect that IndexedDB's storage limit has been reached?

How can one detect via the JavaScript IndexedDB API that the storage limit is reached? I envision that when trying to write data to the DB one can be notified that there's no more room?
0
votes
2answers
66 views

HTML5 indexedDB and persistence lifetime

I read few articles about IndexdDB, but couldn't find details about the lifetime of persisted data. I plan to use it for a session of data manipulation and upload once the user finishes. But what will ...
0
votes
0answers
45 views

Firefox IndexedDb freezes when exceeding storage Limit

I develop an offline webapp and use indexedDb to store a mass of image blobs. At the moment i only use Firefox on MacOs. Every Time the storage limit is exceeded when i try to store an image blob, ...
0
votes
0answers
50 views

microsoft sync framework with WebSqlSync

Can we use microsoft sync framework with WebSqlSync.js(Samuel Michelot). How to implement Microsoft Sync Framework with the WebSqlSync.js.
0
votes
0answers
51 views

IndexedDB openCursor is opened with `done` state

I have the following piece of code: var cursorRequest = store.openCursor(); cursorRequest.onsuccess = function() { ... } But before second line of code is executed the cursor's state appears ...
1
vote
2answers
84 views

IndexedDB over local HTML file

I would like to develop an application which uses a browser to interact with the user. The application is to be available offline and distributable via a zip. The functions I would like to perform ...
0
votes
1answer
56 views

Can't pull up user info right after entered in indexedDB

I have a register form with an indexedDB. I have resgister/log in working. I've been trying different things to get a new register to login as soon as they register but im not sure what's going. It ...
0
votes
2answers
133 views

What is the maximum size of an indexedDB database in IE10

So far I have: Firefox: unlimited Safari: 50MB (and uses web sql instead of idb) Chrome: unlimited Opera: unlimited IE: ???
0
votes
1answer
598 views

Stored value generating [object HTMLInputElement]

I have an indexedDB and using it for a login function. I'm trying to populate a form with the users information when they log in. However the form populates with [object HTMLInputElement] instead of ...
0
votes
1answer
28 views

Capturing removeObject from indexedDB

Using a cursor I'm displaying all objects in my indexedDB. My assignment requires us to have an admin account be created on page launch. I've used a localStorage API to record that the account has ...
0
votes
1answer
36 views

IndexDB won't run function intended for error

Im using an indexeddb to run a login application. I'm trying to run an alert if the user puts in a username not already in the database. However, the onerror event isn't running the alert I set up. ...
0
votes
1answer
49 views

Can't retrieve object from indexedDB

Im trying to create a login form. I have a few usernames (objects) in the db. I've created a form which takes the user name submitted (primary key) and checks if it's in the db. However after the ...

1 2 3 4 5 7