Top "Web-sql" questions

Web SQL Database is a SQL-based API allowing a web pages to store and retrieve structured data locally.

phonegap - sqlite or Indexed DB?

I am web developer starting with phonegap. I need to create one app for iPhone, android and Windows Phone 8. I …

android iphone cordova windows-phone-8 web-sql
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 …

javascript indexeddb web-sql
How to make a WebSQL query synchronous?

Consider: var globalvar; function viewyearmain() { db.transaction(function (tx) { tx.executeSql('SELECT * FROM BUDGET WHERE holdingtype="month"', [], function (tx, …

javascript sqlite asynchronous synchronous web-sql
Developing a HTML5 offline storage solution for iOS/Android in 2011

The problem: I need a device agnostic (e.g. HTML5) solution for storing and querying 250,000+ rows of data offline on …

javascript html web-sql indexeddb jaydata
Best database option for PhoneGap applications?

I am looking for an evolved, stable and proven database solution for PhoneGap applications, which is not limited in size. …

cordova local-storage phonegap-plugins web-sql
HTML5 Web SQL database file location in chrome

I want to use HTML Web SQL for my next web application project, so I did a quick search to …

html sqlite google-chrome web-sql
Local Storage, Session storage, Web storage, web database and cookies in HTML5

What is the difference between these concepts, and when should I use one in particular? Does this listing also contain …

html cookies local-storage web-sql session-storage
Websql Insert Query

I am new websql.i cannot insert primary key in websql. Create Query db.transaction(function (tx) { var sql = "CREATE …

javascript sql database html web-sql
Synchronous query to Web SQL Database

I'm working on a bit of JavaScript that interacts with a client-side SQLite database, via the newish window.openDatabase(...), database.…

javascript sqlite synchronization web-sql
difference between window.openDatabase() and window.sqlitePlugin.openDatabase() functions?

Using Cordova version 3.x and Android version 2.x to 4.x. I am wondering: Is my understanding correct that all android …

android sqlite cordova phonegap-plugins web-sql