Now I connect to a database file like this:
var dbFile:File = File.applicationStorageDirectory.resolvePath("myDB.db");
conn = new SQLConnection();
conn.openAsync(dbFile);
conn.addEventListener(SQLEvent.OPEN, openSuccess);
conn.addEventListener(SQLErrorEvent.ERROR, openFailure);
Tell me please, how do I embed the DB file to the application? I need to have the database inside a swf.