[Solved] I entered the data in slqite database still cursor.getCount() is null and the Error :- Invalid tables

A cursor allows you to access the query result set. The query result set does not change if you insert new data after querying. Hence the cursor count stays at 0. You need to query your database again to see the new data. The NPE seen as warning in your System.err log is not produced … Read more