postgresql - How to convert Postgres dump file to Sqlite file -


i'm trying use pg_dump command generate file whole database includes tables postgresql:

pg_dump -h <my postgres host> -u <my user name> -fc <my database name> > pg.dump 

i want convert pg.dump file pg.sqlite, don't know how it.


Comments