在 Flex Air 中保存文件
我正在尝试使用
var fileSaveDest:FileReference = new FileReference();
fileSaveDest.save(dbWorkedFile,'Inventory.DB');
dbWorkedFile is a File
dbWorkedFile = File.documentsDirectory.resolvePath("Inventory.db");
将 Air 应用程序中使用的 SQLite 文件复制到用户选择的目录,我尝试过此操作,但保存的文件不是有效的 SQLite 文件。
另外,我想知道是否可以将 SQLite 嵌入到 Air 中?如果可以的话如何导入和导出数据库?
非常感谢
I'm trying to copy my SQLite file that is used in my Air app to user's selected directory using
var fileSaveDest:FileReference = new FileReference();
fileSaveDest.save(dbWorkedFile,'Inventory.DB');
dbWorkedFile is a File
dbWorkedFile = File.documentsDirectory.resolvePath("Inventory.db");
I tried this but the saved file isn't a valid SQLite file.
Also, I was wondering whether it's possible to embed SQLite to Air? If so how can I import and export the database?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最后我无法让 FileReference.save() 工作,所以我使用常规 File 的 browserForSave()
In the end I couldn't get FileReference.save() to work so I go with the regular File's browseForSave()
有一篇简短的 文章 描述了如何在 Adobe 上的 AIR 应用程序中包含一些 SQLLite 文件网站(食谱部分)。
There is a short article describing how to include some SQLLite files in an AIR application on Adobe website (cookbooks section).