Skip to main content
0 votes
1 answer
58 views

I have a relatively old application developed in Angular, the problem is that it works with Web SQL and, as you know, current browsers do not support it. For my bad luck, I have to check certain ...
Wilmer's user avatar
  • 73
0 votes
1 answer
85 views

Really appreciate your support I Built a couple of ElectronJs Apps that use Websql (they already working), I recently learnt that Websql will stop completely next year, my question is -will this Apps ...
Jalyn's user avatar
  • 21
0 votes
1 answer
4k views

I am using w3schools for teaching SQL to my students. We tried the "insert into" command in the SQL editor with some of the examples from the SQL tutorial and get this error message: Error ...
Jill McKeon-Vitelli's user avatar
1 vote
1 answer
62 views

I'm using WebSQL on my site (I'm trying to transition off of it). But, there are a bunch of different WebSQL databases on my site, each created with a different openDatabase database name. My question ...
Dan Fabulich's user avatar
  • 40.1k
0 votes
0 answers
25 views

I have a page + script to create a WebSQL database with tables and to populate them with data. On a second page, I try to access the data but it's not there when the page is loading. $(document).ready(...
Hussain Akbar's user avatar
0 votes
1 answer
2k views

Error: Unknown error SecurityError: Failed to execute 'openDatabase' on 'Window': Access to the WebDatabase API is denied in non-secure contexts.. Code javascript: window.openDatabase('teste.db', '1.0'...
WilyWork's user avatar
0 votes
1 answer
75 views

I am building a webkit-based browser and want to provide a polyfill for WebSQL. I found ydn-db but if I inject the polyfill into the webpage, will it just work automatically? Meaning, when WebSQL ...
Moe Bazzi's user avatar
0 votes
0 answers
67 views

Really appreciate your support, My Code Start by Triggering Insert Data function Which run a websql Insert query , then after the data is inserted, i need a to retrieve data using Getdata function to ...
Jalyn's user avatar
  • 21
-1 votes
1 answer
95 views

I've created just a simple code to simulate a virtual store with HTML, Web SQL & Javascript language and my question is: Is it possible to get a variable or localStorage value to insert in a Web ...
Maurilio_Junior's user avatar
0 votes
0 answers
42 views

I'm working on port code from WebSQL to IndexedDb. I'm stuck in the following query, SELECT ad.* FROM AdminUserDetails as ad inner join CustomerDetails pd on pd.CaseManagerId=ad.AdminUserId or pd....
Rajendra's user avatar
  • 243
0 votes
1 answer
720 views

I use Ionic 5 and angular .My page bind to an object((Person)).when I select data from websql my object is update but page is not update until I click menu or other control //this code is in my ...
hasan's user avatar
  • 155
0 votes
2 answers
1k views

This simple sqlite query: CREATE TABLE customers ( id INT(255) NOT NULL AUTO_INCREMENT, name VARCHAR(255), email VARCHAR(255), password VARCHAR(255), PRIMARY KEY (id) ); is ...
Gyan Masih's user avatar
0 votes
0 answers
51 views

I am running apache on ubuntu linux, and I would like to be able for my website to access the websql database. How might I access it from the same Javascript in two webpages (Namely get data from ...
Arc Official's user avatar
0 votes
1 answer
31 views

I have this function const _getCountriesByContinentCode = continent_code => { const someDb = SQLite.openDatabase(db); let foo = []; someDb.transaction(tx => { tx.executeSql(&...
four-eyes's user avatar
  • 12.7k
1 vote
1 answer
114 views

I have created a "backup system", to copy all the table records from a sqlite database, where I take those records and create a .json file. The download in browsers works perfectly, but on ...
Comentarista's user avatar

15 30 50 per page
1
2 3 4 5
57