I am extending the SQLiteOpenHelper class. My constructor
public MyDatabaseHelper(Context context) { super( context, // ??? "MyDatabase.db", // Database name null, // Cursor factory 1 // database version ); }
What does the SQLiteOpenHelper constructor do with contextual information?
For my application, the constructor will behave the same regardless of the state of the program (context). Can I pass null to context with any future issues?
chessofnerd
source share