The web-database tag has no wiki summary.
0
votes
0answers
19 views
Modifying an embedded macro in an access web database
I have an embedded macro in an access web database and i need to modify one of the conditions but have run into some issues. The condition below is puzzling me
[searchable] Like "*" & ...
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 ...
0
votes
1answer
109 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
53 views
Can executeSql take named parameters?
I see in examples when executeSql takes several parameters, we use question marks:
db.transaction(function(tx){
var addedOn = new Date();
tx.executeSql("INSERT INTO todo(todo, added_on) VALUES ...
-1
votes
1answer
49 views
Host database on web server [closed]
I have desktop application with a SQL Server database hosted on local network. Now my customer wants to host database somewhere on the web, so employees can access it from anywhere using desktop apps ...
0
votes
0answers
163 views
jqMobi + sqlite database
I am new to jqMobi.. I like the UI/speed of jqMobi.. I am developing Html5 app for Android and iPhone.. previously I was working with PhoneGap, now I am using jqMobi ...
4
votes
8answers
224 views
Why is my MVC app trying to log into my DB as my machine, and not as the App Pool identity?
When I try and access my newly deployed (to lcoal IIS 7.5) MVC4 app, I get the error:
Login failed for user 'DOMAIN\MACHINE-NAME$', where the '$' is appended and not part of the machine name. The ...
1
vote
1answer
410 views
Run VBA code on event in a web database (Access)?
I took a already set up database from the Office.com templates (File --> New --> Office.com Templates), since this template already gave me 80% of my requirements.
I then changed the last 20% of this ...
0
votes
1answer
43 views
Web database Issue
I am using web data base in google chrome and the executeSql function trigger both succes and failure signal !
function succes(){
alert("succes");
}
function failure(){
alert("failure");
}
...
0
votes
1answer
146 views
SQLite Success Callback Fires Before Transaction Finishes
In my ASP.NET web form application I need to perform some JQuery operations to gather form data and then iterate through the form data to save to SQLite Database and upon successful completion close ...
-1
votes
1answer
51 views
Android edit callers name in dial app
When someone calls my phone, i want to be able to lookup the number in a database and display a name instead of the number on the incoming call activity. Is this possible in any way? Thanks.
0
votes
0answers
220 views
storing HTML5 webdatabase table data to sql server periodically
I want to read data from html5 web database and post to sql server using vb.net server side. I have used following link as reference:
http://www.html5rocks.com/en/tutorials/webdatabase/todo/
I have ...
0
votes
0answers
24 views
Order By Function not working for timestamp field in webdatabase
I have a table named todo having field created(timestamp)
Currently it holds values in the following format: Tue, 14 Aug 2012 20:49:48 +0000
I want to display the latest todo first for that i have ...
0
votes
1answer
109 views
How do i return no of rows of a table according to a search criteria in html5 web database?
I am newbie as far as html5 web database is concerned.
I have created a database called todo with table name todo having fields like title,date etc.
The table is empty right now.
I have defined a ...
0
votes
1answer
286 views
Database Web Front End [closed]
So I am inheriting a single table database from SQL Server. I'm currently looking for a web front end to support user modifications and user authentication (via Active Directory). Examples being: ...
1
vote
2answers
2k views
Access localStorage or web database created in PhoneGap from Android native code
How is it possible to access web sql database created in PhoneGap app from native code in Android?
I have a local notification plugin set up and what I want to achieve is fetch user setting from web ...
1
vote
1answer
544 views
Can a Sharepoint Web Database Lookup Field use a query?
So, I'm working with this table and want to offer the user a Lookup list in one column. I can do this easy if I want to use a whole table.
But I want to show in this lookup just a subset of data.
...
3
votes
1answer
1k views
Web Database - tx.executeSql callback not running every time
I have an HTML5 website built using jQuery Mobile.
On my index.htm page I have an ahref. When I click on that link I run a function which does a tx.executeSql and the callback method is run which ...
-3
votes
1answer
43 views
Where can I read about the technical implementation of web databases in Google Chrome?
I've read up on the standards regarding WebSQL, IndexedDB, and localStorage, but where can I read up on how a specific browser (Google Chrome in this instance) actually implements these features?
I ...
1
vote
2answers
117 views
What happened to HTML 5 web databases?
I checked out the site at http://www.w3.org/TR/webdatabase/ and I saw a huge banner there that said
"Beware. This specification is no longer in active maintenance and the Web Applications Working ...
-1
votes
3answers
2k views
How to get data from a web page using php? [duplicate]
Possible Duplicate:
How to implement a web scraper in PHP?
Scraping and web crawling framework, PHP
Hi i have a list of links from which using the source code i want to get some data from ...
1
vote
1answer
242 views
Create a table in Database else open database in HTML5
If i use the below code
var db = openDatabase("CurrADinfo", "1", "A list of QC Points.", 100000);
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE foo (id , text)');
});
It will ...
3
votes
2answers
747 views
how to manipulate Phonegap Web SQL Database
I'm developing an app with PhoneGap and I found a problem. I don't know and can't find the database file so I can manipulate it or check if it has the records and tables that I want.
Is there any app ...
0
votes
1answer
180 views
webdatabase subquery
I'm struggeling with a javascript function to get data from 2 different queries. If I execute the queries seperated in the function I only get the last result from the first in the second query. I ...
0
votes
1answer
174 views
Get a returned value in a callback on main function
I'm developing an application using HTML5 and web database storage.
I want to insert an row in a table and return the new ID (table's primary key) created using:
function insertIntoTable(title, ...
0
votes
1answer
520 views
how to use get data option in excel for multiple urls?
I have a list of website URLs in one column lets say A1 to A704
In this format:
www.website.com/page=1
www.website.com/page=2
www.website.com/page=3
www.website.com/page=4
etc.....to page 704
I ...
0
votes
2answers
282 views
Approach for File System Based Data Storage for Web Application
I am looking for optimal approach to use file system based data storage in Web Application.
Basically, I am developing a Google Chrome Extension, which is in fact a Content Script based. Its ...
1
vote
3answers
1k views
web sql database foreign key support
I'm testing this statement in Safari 5.0.5, but I get an error before FOREIGN:
CREATE TABLE IF NOT EXISTS Idea (
id INTEGER PRIMARY KEY,
title TEXT NOT NULL,
content TEXT NOT NULL,
...
13
votes
2answers
3k views
Local Storage, Session storage, Web storage, web database and cookies in HTML5
HTML5 local Storage
HTML5 session storage
HTML5 web storage
HTML5 web database
Cookies
What is the difference between these concepts?
Which case should I use one in particular?
Which are the ...
26
votes
4answers
12k views
HTML5 IndexedDB, Web SQL Database and browser wars
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
Safari ...
0
votes
2answers
199 views
How would HTML5 web databases be cleaned-up?
I've started looking into HTML web database storage for some Chrome extension I'm working on, and it made me wonder - Who should be cleaning abandoned webdbs? As opposed to desktop apps, there's no ...
