I have two sqlite databases and you want to copy a table from database A to database B. Other tables in database A should not be copied. What is the easiest way to do this in Java?
I could finally do something like Select * from A and then paste it all into Base B, but shouldn't there be a better way?
source share