I saw that i can execute a .sql file with shell commands...
Process process = Runtime.getRuntime().exec(commandLine);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
The "commandLine" attribute must be something like that?
commandLine = "sqlite> .read database.sql";
And another doubt... Where should i keep my "database.sql" file? Into assets? I've tryed to do that but not worked... Someone knows how to do it?