I have two sqlite databases and want to copy a table from database A to database B. The other tables in database A should not be copied. What is the easiest way to do that in Java?
I could definitively do something like Select * from A and then insert all of this into database B, but shouldn't there a better way?