I am writing an app that will run in an webkit browser. I need it to take the data locally stored on the device and export it in a .csv format. Is this possible using javascript? It would have to be done in browser. Php isnt an option. Thanks
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
You can do this, but you will need to serialize your javascript to csv by hand. You will also need to decide what CSV dialect to use. Below is one (untested) possibility that shows the general pattern you must use.
However, it's probably not possible to "download" that file from javascript to the local filesystem, only to upload it to a server. Depending on your exact browser environment, you may be able to use the very-draft FileWriter api, some kind of flash or java applet shim, or maybe some proprietary API offered by your device. |
|||||
|
|
Assuming that the sqlite file is located on the server (we're not talking about local storage, right?), you'll still need to access the file server-side. |
|||
|
window.openDatabase()? – Francis Avila Feb 7 '12 at 19:56