I have a problem with the database. I have a 9 databases which I need to use this 9 databases dynamically in the application...ho开发者_高级运维w can I do this....
Can I use the Hibernates for this problem. If yes how can I use it?
Hibernate doesn't support Android (as far as I know).
If you want to have multiple databases open, try my post which shows how to have two databases open. Android multiple databases open
You can easily extend the solution to support your 9 databases.
Are these SQLite databases (this is the Android 'default')?
Then you can use the Android libraries directly and just use 9 connection objects.
精彩评论