如何将数据从postgres数据库导入到android sqlite

时间:2015-05-20 15:06:32

标签: android sqlite postgresql

我有一个Postgres数据库服务器,我需要将表记录从postgres下载到平板电脑android(sqlite数据库)。 Android中是否有功能可以执行此操作?

示例:postgres中有一个customer表,我需要将此表导入到android中的sqlite。

欢迎任何提示。

最好的问候。

1 个答案:

答案 0 :(得分:2)

这可以通过postgres的sql文件中的dumbing数据库并将其导入sqlite来完成。

在sql文件中转储数据库。

pg_dump dbname > outfile.sql

参考:http://www.postgresql.org/docs/9.1/static/backup-dump.html

从sql转储文件导入数据库

sqlite> .read outfile.sql

参考:https://www.sqlite.org/cli.html

您可以使用以下命令转储postgres中的特定表:

pg_dump  --table=table dbname > outfile.sql