web-sql Questions

6

Solved

I want to make my website available offline even if the user clears the cache and cookies. Is is possible? Also I am dealing with database. Is is possible to handle databases offline?
Keeney asked 1/2, 2011 at 10:39

3

I am about to develop an application where employees go to service repair machines at customer premises. They need to fill up a service card using a tablet or any other mobile device. In case of no...
Sulphathiazole asked 16/8, 2013 at 13:36

6

Solved

Consider: var globalvar; function viewyearmain() { db.transaction(function (tx) { tx.executeSql('SELECT * FROM BUDGET WHERE holdingtype="month"', [], function (tx, results) { var len = res...
Kyphosis asked 10/2, 2013 at 14:23

2

Solved

The new iOS 13 which was released this week no longer supports WebSQL (bot Safari and Chrome). I see that the best solution would be migrate to indexedDB, but I need to use it right away. Since it ...
Reproduce asked 20/9, 2019 at 19:20

2

Recently, I have come across the Web SQL and IndexedDB APIs that are provided by browsers. What are the use cases for Web SQL and IndexedDB and when should I use one over the other?
Jarvisjary asked 26/9, 2017 at 6:1

2

I can't understand this simply thing. I need to store data in a database so, following the ionic documentation, I did exactly what this page says: https://ionicframework.com/docs/storage/ I read ...
Qintar asked 16/4, 2018 at 17:52

1

Solved

What is the safest way to store data offline, assuming that I want to cover all platforms (Web, Electron & Cordova). The reason I ask is, my app Fudget (which is a Cordova / Electron - but no...

2

Solved

I am using the ionic/storage package to store the api_token for users after they logged in so I can use the unique token to interact with an API. The problem I am facing is that I need to get the ...
Abulia asked 8/12, 2016 at 8:49

2

Solved

I want to use HTML Web SQL for my next web application project, so I did a quick search to find a tutorial and wrote the following code: <!DOCTYPE html> <html> <head> <meta c...
Fotina asked 24/4, 2015 at 8:34

8

Solved

When my app stores data locally on a phone, how permanent is that storage? I'll elaborate the exact situation: I'm building an app with jQueryMobile and Phonegap. It's essentially a browser app, b...
Yseulte asked 13/10, 2011 at 7:36

0

I've done some looking around, and found that WebSQL seems to have a somewhat rocky future right now. On the one hand, it's apparently widely looked down on as a solution because of the fact...

5

Solved

What is the difference between these concepts, and when should I use one in particular? Does this listing also contain different names for the same general concept? HTML5 local storage HTML5 sess...
Debug asked 22/3, 2011 at 22:23

6

Solved

I'm starting the development of a web app with offline database storage requirements. Long story short, the app should be able to run on: One of the major desktop browsers, Chrome preferred Safar...
Coleen asked 19/10, 2010 at 19:10

6

Solved

I'm curious if there is a library or a project out there to provide a generic interface to IndexedDB or to WebSQL, depending on user's browser's support. If they're using Chrome/Safari, use WebSQL,...
Candiecandied asked 24/5, 2011 at 19:53

4

Solved

I just read something about HTML 5 Web SQL Databases. I did a little search on here and Google but couldn't find a simple to the point answer. Can someone tell me, where is the data stored when us...
Contingency asked 1/12, 2011 at 20:48

9

Solved

I am new to Web SQL database and I use it to save data in a local database in a web page. I can create a database by var db = openDatabase('database', '1.0', 'my database', 2 * 1024 * 1024); ...

3

Solved

I have been working with phonegap for little time, and i'm having some trouble with the concept of storage in it. So, the documentation states that there is this database that you can open, and it...
Wixted asked 21/11, 2013 at 13:1

1

Solved

Chrome Dev Tools support querying a web sql database but the result is shown in a table that cuts off strings that are too long with ellipsis (...) How can i view the entire columns content? Becau...
Crape asked 2/7, 2015 at 9:55

5

I am web developer starting with phonegap. I need to create one app for iPhone, android and Windows Phone 8. I need to store some data (too big for localStorage) locally. I don't know witch soluti...
Woodcutter asked 31/1, 2013 at 11:18

1

Solved

WebSQL and IndexedDB are both DB API for accessing (CRUD) the underlying embedded database in the web browser. Which, if I am correct, is like SQL for accessing (CRUD) any client-server database li...
Shallop asked 23/3, 2015 at 20:49

2

Solved

I have an application that use WebSQL. I want to support IndexedDB too (For Browsers without WebSql support). Is there any libary that use sql-syntax but works with indexedDB / LocalStorage in back...
Ier asked 13/2, 2014 at 14:12

2

I try get column list from Web sql (Chrome local database). Оne of the decisions - get info from sqlite_master SELECT name, sql FROM sqlite_master WHERE type="table" AND name = "'+name+'"; For e...
Kolomna asked 5/3, 2013 at 10:27

1

Solved

Using Cordova version 3.x and Android version 2.x to 4.x. I am wondering: Is my understanding correct that all android devices by default have an sqlite program/interface for creating sqlite da...
Johansen asked 27/6, 2014 at 10:28

5

Is there a cross-browser jquery like wrapper API abstraction over the various web storage systems available?
Dovap asked 28/7, 2012 at 23:42

4

The html5 spec for executeSql includes a success callback and a fail callback: db.transaction(function(tx) { tx.executeSql('SELECT * FROM MyTable WHERE CategoryField = ?', [ selectedCategory ]...
Cilium asked 8/11, 2011 at 23:52

© 2022 - 2024 — McMap. All rights reserved.