In my application I want to save some string data into an array.
This data should then be fetched by the another activity in a ListView.
I am using a database to store the data. But every time I’m storing data in different tables. Now as per my knowledge it is not possible to fetch all the available tables from a defined database.
So what I’m trying to do is, store the table name into the Array while it is created. And displaying it in the ListView.
Now when I press on the perticular ListIndex, it will fetch the data of that table.
Is this possible?
Use a Map of Table Name against Array of Data
EDIT
For your comment about sending table names: