最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Sencha sqlite example - Stack Overflow

programmeradmin2浏览0评论

I would like to see a decent example of a mobile web app using the Sencha framework with a client side DB accessed with SQLite. I'm currently digesting JqTouch and kinda get the binding method used there from reading Jonathon Stark's "iPhone apps" book, but cant find any examples of accessing Senchas features ie listed elements with SQLite. The DB will be small; 30 records, with about 5 fields, mostly numeric, a few of them calculated. All the math is done in javascript and I have that part working (in dash code). I need to add, delete, and edit the records.

Any pointers or examples would be very much appreciated. I'm an old dog trying to learn new tricks. Thanks

I would like to see a decent example of a mobile web app using the Sencha framework with a client side DB accessed with SQLite. I'm currently digesting JqTouch and kinda get the binding method used there from reading Jonathon Stark's "iPhone apps" book, but cant find any examples of accessing Senchas features ie listed elements with SQLite. The DB will be small; 30 records, with about 5 fields, mostly numeric, a few of them calculated. All the math is done in javascript and I have that part working (in dash code). I need to add, delete, and edit the records.

Any pointers or examples would be very much appreciated. I'm an old dog trying to learn new tricks. Thanks

Share Improve this question edited Sep 14, 2010 at 21:57 Donal Fellows 138k19 gold badges160 silver badges221 bronze badges asked Sep 14, 2010 at 21:07 aflyfishraflyfishr 611 silver badge4 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 2

Sencha is client-side Javascript, so your application actually runs on top of Safari. That means you can forget about accessing (or installing) your own SQLite database from within the browser sandbox.

Having said that, you want to learn some new tricks, so why dont you read up on localStorage and DOM Storage. Basically the HTML5 specification allows for offline database storage based on SQLite (imagine relational database cookies). There is 1 per domain and they can be up to 5MB in size. I believe the iPhone supports this as well.

Here are some links: Introduction some API Information and a nice little blog entry by a chap called Ben Lister

Your client side code (i.e. Sencha/Javascript) would not access the SQLLite database. It will either need to read JSON or XML from the server. You'll need server side code to read the data from the database and format it in a way that your Sencha data readers will understand.

What are you using server side? If it's PHP you should look into MDB2

I had very good experience integrating Lawnchair library with Sencha Touch. Take a look at their guide, it's very easy.

Looks like there is a SQLite proxy available for sencha 2 now. http://market.sencha./addon/sqliteproxy-

Check out this thread on the Sencha Forums - it's a user created proxy for SQLite which I've successfully used to put data into a SQLite DB. The proxy es with an example, but I might try and make a slightly more plicated one at some point.

Sencha's local storage doesn't take advantage of SQLite via the JavaScript API in the browser, but does use local key:value storage and has it's own way of referencing data to make it pseudo relational. This is still part of the WebDB spec, which is probably still SQLite under the hood if I had to guess. It's more persistent than a cookie or session, regardless.

You can also receive XML/JSON from a server over JSONP or Ajax if you're on the same domain, create a model to handle that data as well and bind it to a local store so that your data is available offline.

发布评论

评论列表(0)

  1. 暂无评论