Hello.
I'm developing an Android application.
I'm wondering if it really necessary to create objects that represent tables from a SQLite database.
I'm implementing insert method and instead using a specific object for a table, maybe I can use a HashMap. This Hashmap will be an argument for that method.
public boolean insertEntry(HashMap entry) {
...
String name = entry.get(Constants.COLUMN_NAME);
...
}
What do you think?