Hi,
I have a question for the sqlite physical path.
for instance
var dbFile:File =
File.applicationStorageDirectory.resolvePath("Sqlite1.db");
if(dbFile.exists) {
conn.addEventListener(SQLEvent.OPEN, openHandler);
} else {
conn.addEventListener(SQLEvent.OPEN, createHandler);
}
conn.open(dbFile);
I can not see the Sqlite1.db in c:\
How to do this if I want to create the sqlite in the following path
c:\db\sqlite1.db.
I get error when I try :
var dbFile:File =
File.applicationStorageDirectory.resolvePath("c:\db\Sqlite1.db");
Thanks
Mark