I\'m trying to use SQLite in my android app. I\'ve created the helper class like this:
public class EventoSQLHelper {
// Configuração da base(nome e ver
Well, let's quote the Docs:
A helper class to manage database creation and version management.
You create a subclass implementing onCreate(SQLiteDatabase), onUpgrade(SQLiteDatabase, int, int) and optionally onOpen(SQLiteDatabase), and this class takes care of opening the database if it exists, creating it if it does not, and upgrading it as necessary. Transactions are used to make sure the database is always in a sensible state.
So what this means is, that you don't have to explicity create the "database-file" it's done for you by the SQLiteOpenHelper. So the first time you're opening your Database it will be created. (It will automatically run through onCreate in your DataBaseHelper)