SQLite: Easiest way to copy a table from one database to another?

前端 未结 2 1787
误落风尘
误落风尘 2021-01-01 20:58

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 i

2条回答
  •  情歌与酒
    2021-01-01 21:06

    Why do you want to do that in Java? You can do it directly at the command-line, by dumping your table, and reading it into your other database :

    sqlite3 A.sqlite ".dump some_table" | sqlite3 B.sqlite
    

提交回复
热议问题