I am working on a team project in object-relational databases and one of us has made the database in PostgreSQL, and the rest of us will make the application based on that database. How can he export the database for us to use with C# (Visual Studio)? Can Postgres make some file with the database or something similar?
Share
Yes, PostgreSQL can do that and much more. What you are looking for is a dump of the database, which is basically a file containing all the database.
Have a look at the official documentation for
pg_dumpThis command will generate a backup from the original database and than you can use it with a
pg_restorecommand to load the database somewhere else.