flash - SQLite with Actionscript (AIR) for all users -


I would like to save settings for the AIR application in the local SQL database. Wherever I have read, it is recommended that you use the File.applicationstorage directory to save the database file.

My problem is that in most cases, the AIR application will first be started by an administrator that configs and setup applications (and save the settings to the database) and later used by different users. And I would like to know whether it is possible to save the database to a location that every user can load from it? As I understand it, File.applicationStorageDirectory indicates the user directory?

Perhaps the administrator sets up the right permissions and goods, but I do not want to install it too hard ...

I think you're saying wrong.

There are fixed properties in the file category that refer to commonly used directory locations. These stable properties include:

  * File.applicationStorageDirectory - A storage directory for each installed AIR application is unique  

of this Accordingly, the applicationStorageDirectory is unique to each app; Not unique to every user

Is your experience different?


Comments