0

I have created a table in SQLite using phonegap. How can i have access to this table using Java? Because i have made a background process (as a phonegap plugin) which needs to retrieve data from the already made table.

1 Answers1

0

Your database is located in

On Eclipse :

Window>Open Perspective>Other>DDMS

-- in File Explorer tab

data>data>your_package_name>databases>your_DB_fileName

So at any point of time if database is successfully create and available in it respective location, then you can read it programatically using the path

/data/data/your_package_name/databases/your_DB_fileName

Vinayak Bevinakatti
  • 40,205
  • 25
  • 108
  • 139