Web SQL Database is an SQL-based API allowing a web page to store structured data locally, mainly used in mobile web development.
0
votes
0answers
10 views
How to get database size in web sqlite using query
I use an html5sql plugin for doing operations on the sqlite for my ipad application. Currently i am explicitly passing the size to be 5 MB for creation of the database. I am looking for a mechanism ...
1
vote
1answer
54 views
How to connect Dart to SQLite?
My old application used web2py with SQLite as the database. Now I want to try porting this app to Dart and again use SQLite as the database.
I can't find any documentation on how to use it. I just ...
0
votes
1answer
19 views
How to get the context of a Web Sql error?
I start deploying an offline application on iPhones, but it's still under heavy developpment.
I have a simple error handler for my query :
db.transaction(tx) {
tx.executeSql("SELECT * FROM ...
0
votes
0answers
28 views
phonegap and persistencejs transaction error
I have a functioning webapp that I'm porting to PhoneGap to deploy on iOS & Android devices.
The app relies on persistence.js for saving data locally in the browser -- and from everything I've ...
2
votes
1answer
77 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
0answers
26 views
websql ios. An attempt was made to break through the security policy of the user agent
I am using websql in an application that I'm building. It's working great until I access it on ios (iPad).
I get the following error and the application breaks:
An attempt was made to break through ...
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
24 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
0answers
44 views
Why can't I modify name of Web SQL Database column?
I'm not expert about Web SQL Database,so I was doing some proves,but I have a problem that I really can't understand.
I create my DB:
var MyDB = {};
MyDB.webdb = {};
MyDB.webdb.db = null;
...
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}
});
...
2
votes
1answer
56 views
Storage limitations for WebSQL on iOS (with PhoneGap)
I am currently using Local Storage on both Android and iOS, but reaching capacity limits. So I thought to switch to WebSQL, which is of course deprecated but still working on both platforms.
The ...
1
vote
2answers
150 views
Phonegap local storage returns empty result
On app's first load, I retrieve data from storage (Phonegap's WebSQL storage type). Phonegap storage results load fine. Until...
When I go to another page in the app:
<a href="page2.html" ...
2
votes
0answers
47 views
Strange “SELECT” in WebSQL or not?
I'm trying to use WebSQL using html5rocks example. All goes well until I try to do "SELECT * FROM todo" then there is something not clear to me. Callback returns SQLResultSet without ...
1
vote
0answers
31 views
Web SQL Web Worker Synchronous
First of all, sorry for my English...
Maybe it's a nonsense but i have the following question:
I have a jquery event call...
$('#buttonX').click(function(){
function1();
alert(function2());
...
0
votes
1answer
116 views
PhoneGap + jqMobi List cannot scroll on Android
When I get result from web sql DB and show them in the list,
I face with the problem that I can't scroll on Android, by the way I am using cordova2.6.0.js with jqMobi and jqUI ; What I am trying to ...
0
votes
1answer
38 views
WebSQL in ClojureScript?
I'm having some trouble formatting a ClojureScript wrapper for websql. The main problem is that JavaScript uses tx and err arguments for websql that work without being defined. When the ...
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
1answer
25 views
get existing tables from websql database
I was wondering if it is possible to get the existing tables from a websql database. Is there some sort of query to find these?
I have already found several sqlite examples but these don't work in ...
1
vote
0answers
25 views
Hold the execution of For loop without Break and continue
I want to hold on the execution of for loop till the function inside return the value, but the problem in my code is firstly when I check in debugger , the for loop starts from 5 directly instead of ...
0
votes
1answer
31 views
WebSQL type casting columns
I have two tables with a common column which I am trying to join. How ever due to circumstances which I have no control over, one of the columns stores data as a string, the other as an integer. I ...
0
votes
0answers
40 views
Why is my web SQL statement executed twice?
When I try to do any kind of sql (select, insert, ...), my statement gets executed twice.
This is very annoying when my data gets added twice.
function createEntry()
{
var myDB = ...
0
votes
1answer
47 views
JayData Phased Integration Into App
We're considering taking the plunge and porting our existing applications WebSql backend/data-layer over to JayData. It's all client side. We'd like to do the move in two stages allowing our ...
0
votes
1answer
38 views
Web SQl Database Where is my database
I found a neat tutorial at http://www.tutorialspoint.com/html5/html5_web_sql.htm It sounds like it would be great to learn this but I can't find the location of the DB(s) I think it creates two but ...
0
votes
0answers
19 views
Delete rows on InnerJOIN in web-sql HTML5
in continuation with LINK
I need to get the correct DELETE query . The one given in the above link is causing errors.
I need to execute this query on web-sql provided by HTML5
1
vote
3answers
39 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
32 views
HTML5SQL running on Ipad: Insert multiple rows hang after increase the size of database popup raises
This problem only happens when running the html5 application on Ipad.
I am trying to insert 3000 rows within a html5sql.process call. (html5sql is a light JavaScript makes easy the SEQUENTIAL ...
0
votes
0answers
50 views
Chrome WebSQL select doesn't return any data, when there is data in the sqlite db
I have a table in my sqlite db (accessed in my web app via websql) called Parameter and it has 79 rows in it when I access it via the command line:
sqlite> select count(*) from Parameter;
79
...
1
vote
2answers
101 views
Problems with db.transaction on phonegap
I have a function that save some data to my database and all worked fine on cordova 2.4, but I upgraded to cordova 2.6 and I started to have some issues with my database, it becames slow and start to ...
2
votes
0answers
85 views
Web SQL - Insert if not exists or Unique column?
I try to execute insert or ignore into WDCategory(name,userID) values('Cate 1',1) which name is a unique column but not successful if there is a record with same name in the table. "Not Successful" ...
0
votes
1answer
92 views
Update all the fields of a table in Web SQL HTML5
In a general Update sql statement we need to map each of the fiields to their new values using column1=value1 and .....(so on so forth).
I need to update all the columns of a row (8 columns are ...
0
votes
0answers
24 views
Exporting WebSql to csv undefined
I'm exporting my table to csv, but it appears undefined...It actually see the data, and give me an table, but it gets undefined...Do you I have to make any coverting to do this?
Js code:
var db = ...
0
votes
1answer
55 views
JQuery replace() doesn't work
I want to remove single quote character in query string which include user input. So, I replace the single quote by double quote such as:
From: select * from user where name = "Jon'h"
Change to: ...
0
votes
0answers
160 views
InvalidStateError: DOM Exception 11 in web sql
db.transaction(function (tx) {
tx.executeSql('SELECT * FROM orders', [], function(tx,result) {
alert(result.rows.length);
}); });
this is my code from phonegap application when i ...
0
votes
0answers
46 views
Unable to execute Web SQL query with iOS 5.1.1 and PhoneGap 2.5
My Phonegap application uses a local database and It works fine on iOS 6.x. But when I test on iphone with iOS 5.1.1, It doesn't. I checked the application package contains and see that the database ...
0
votes
1answer
34 views
Infinite date scroll - WebSql JavaScript
Is there a built in method for infinite date scrolling?
I am making a database program, and the point is to display data added over especific dates.
Of course I can't do this forever in time:
...
0
votes
1answer
49 views
Merge JSON Strings to streamline AJAX
I currently have the following code to process Web SQL rows. Currently it sends a request to the server for every row. I would like to merge all the rows together somehow into a multidimensional ...
0
votes
1answer
60 views
WebSQL - Lost in Transaction
I am developing a web-app using both WebSQL and IndexedDB. IndexedDB works well in browsers that support it, and my WebSQL implementation works in most browsers, however on Android javascript ...
0
votes
1answer
66 views
Reference object Web SQL JavaScript
Check my code:
function callQuery(){
db.transaction(function querySum(tx){
tx.executeSql('SELECT SUM (entry) FROM ENTRIES',[], getNum, errorCB);
});
}
function getNum(tx, results){
len = ...
0
votes
1answer
103 views
Unable to fetch actual value from database, Its returning undefined. - Javascript WebSql
It keeps returning undefined... :(
Check my code:
var db = openDatabase("Despesas", "1.0", "Despesas DB", 2000000);
db.transaction(createTbl, errorCB, successCB);
function ...
0
votes
1answer
62 views
Displaying table items with JavaScript in HTML
Why can't I display the table item?
My code:
function get(){
db.transaction(function(tx){
tx.executeSql('SELECT * FROM ENTRIES', []);
function show(){
var len = ...
0
votes
0answers
35 views
Browser or code wrong? Web Sql doesnt create table
The table it isn't created or does not show:
function createTbl(){
db.transaction(function(transaction){
transaction.executeSql('CREATE TABLE IF NOT EXISTS data(id INTERGER PRIMARY KEY ...
0
votes
0answers
81 views
Best way to obtain the path to a websql database file
I'm developing a phonegap Web App. The app uses a websql DB for storage. Due to project requirements, I need to code a background synchronization process in native Java code which would need to access ...
0
votes
1answer
74 views
WebSQL Performance Issues - Updating large amount of data
I have some code that updates some webSQL Tables, however it is a transaction inside another transaction, inside another transaction. It takes quite a long time to UPDATE the tables, but it takes a ...
0
votes
0answers
52 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
48 views
Working with DateTime fields in Web SQL
If I issue the following command in Web SQL:
SELECT LastModified,strftime('%s',LastModified) A FROM State
I get the following result:
Object {LastModified: "Thu Mar 28 2013 10:22:12 GMT-0400 ...
0
votes
1answer
47 views
Web SQL Database DateTime Field comparison
I have a web sql database table with two DateTime fields in it. I'm getting 0 rows when I issue the following command:
SELECT * FROM State WHERE LastModified > LastUploaded
But I can see in the ...
0
votes
0answers
86 views
How To handle result set of websql in html 5?
I m creating mobile web application using html5 and javascript.I m having two javascript files. AttributesDatabase.js and AttributeView.js.From AttributeView.js i m calling one function from ...
0
votes
1answer
42 views
Is there a way to clear the entire database in the websql or indexed database ?
Consider this - I have created database in websql, inside which, multiple tables are created and encrypted data are loaded on these tables.
By any chance is there way the intruder or any other ...
0
votes
1answer
23 views
how to provide security to the database in websql
my question is how to provide the security to the database in the websql, so that no other person can open the database or modify the database.
for example:
var db = openDatabase("AddressBook", ...
0
votes
0answers
311 views
SQL database connectivity using HTML5
I'm trying to make an online registration form using HTML5 that connects to a web SQL database
i have two fields "username" and "password" which on clicking "submit" need to be added as a row into a ...

