I'm interested in doing a little bit of work with Ext and AIR and I've played around a little with the Sample Tasks application. What's not entirely clear to me is how the data access code works. I can't find any documentation on Ext.sql
Is there any overview of how to create a connection, create a table and perform operations on that table?
Thanks for that. I've been doing a little investigation and figured out how the SQL connection stuff works, it's actually dead simple as you pointed out (duh!)
I'm currently playing about with the TaskStore and Proxy classes to figure out whats going on there.
From my understanding the Proxy class provides a generic way of loading the data from the database whilst the Store (which contains the Proxy) provides the application with the mechanism for inserting, updating etc.