I am starting to learn android development using the Eclipse SDK with SQLite.
If I have an existing database, which I created manually, in another application etc. It seems as if all the examples, even the ones which bring in an existing database, are forced call create a blank db first, then replace it with the existing db.
why can't I simply connect to it, and query from the existing data?
For example, using "openDataBase" or similar? Does anyone have a very simple example of this... sample project with code?
You should be able to do that. Make sure DB path is pointing to correct DB. Then, you can just open and query the database.