I am having phonegap android app where i create database using
openDatabase(shortName, version, displayName,maxSize);
for example my database name test and a table test_table
Now i want to access test_table data using DatabaseHelper of Android(not in phonegap part but in same application)
i have tried using
query(DATABASE_TABLE, new String[] { row_1, row_2 }, null, null, null, null, null);
but showing no table exist. after creating table and inserting data i try to access using simple android code.
my question is can i able access database what i created using phonegap? if possible then how?