Most voted "indexeddb" questions
12 questions
Sort by count of
-
9
votes1
answer390
viewsWhat is the difference between Local Storage, Indexeddb and Websql?
I have a habit of using Local Storage to store JWT, I would like to know the difference between Local Storage, Indexeddb and Websql and when to use one or the other.
-
5
votes2
answers388
viewsWill Websql really be discontinued?
I’m having a lot of problems trying to run a program developed in HTML 5, Javascript, Ajax, JSON, Indexeddb, Mysql, PHP, along with the Intel XDK IDE. The program is quite simple it captures…
-
5
votes1
answer205
viewsWhat is the size limit of Indexeddb technology?
Today at work they mentioned the technology IndexedDB to solve a problem here in the company, but Between several questions arose me, being one of them: What is the data limit that can be stored in…
-
3
votes1
answer201
viewsHow to create relationships using the HTML 5 Indexed Database API?
Can anyone tell me how to best relate data using HTML 5’s Indexed Databases? I’ve seen many examples of how the API works, but in none of them have I seen data being related. For example, what…
-
3
votes1
answer412
viewsGet all data from a table in a JSON - Indexeddb
Hello! I need to get all data from a table in a JSON. (Using the Indexeddb database). How to proceed?
-
2
votes1
answer36
viewsA Mutation Operation was attempted in a READ_ONLY transaction
Why I can’t add or delete id 1 or id 2 in the code? <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>IndexedDB</title> <script…
-
1
votes0
answers83
viewsError updating Indexeddb version
I’m having trouble updating the version of Indexeddb, it presents the following errors. Uncaught Constrainterror: Failed to execute 'createObjectStore' on 'Idbdatabase': An Object store with the…
-
1
votes2
answers224
viewsDoubt about Indexeddb
I’m needing to do a many-to-many table on Indexeddb, where I have People Classes and People Classes, one can participate in several classes, and several classes can have several students, so I…
-
0
votes1
answer131
viewsIndexeddb does not connect on Android 4.2
I am working on the Intelxdk IDE, and I use Indexeddb to persist some files. By emulating the project in the IDE, everything works perfect, it makes the connection, it brings all the data,…
-
0
votes0
answers33
viewsSearch with key usage
I have a table that key is as autoIncrement, I need to search and pick up the line that identifies the code I pass. When searching for another part of the field works perfect. The research I’m…
indexeddbasked 9 years, 1 month ago Renan Rodrigues 3,709 -
0
votes0
answers33
viewsIndexeddb does not disappear data after giving refresh
As I do not disappear the added data, even giving refresh on the screen, I say after I add if I give refresh do not disappear the add data in my table: var indexedDB = window.indexedDB ||…
-
0
votes1
answer24
viewsUndefined object reading from Indexeddb (JS)
I’m using Indexeddb to record a simple table using Javascript. When selecting a record for change, it is read and loaded into the form. However, when trying to update it in the database it is not…