Creating more than 1 *.db file with greenDao android ORM library
I'm using greenDao library ( http://greendao-orm.com/ ) for managing my android app database. Everything works fine, but I can't find a way to create many *.db files. All my tables are in the same single file i.ex. books.db. Is there a way to tell greenDao to put books related tables in books.db and authors related tables in authors.db? Thanks in advance for help. EDIT: Ok I've solved the problem. You can make many *.db files by putting them in different schemas and then use generatedAll for each schemas i.ex: try { new DaoGenerator().generateAll(schema1, _path); new DaoGenerator().generateAll