Re: Creating a Database Other Applications Can Use ?

From: <brew(at)theMode(dot)com>
To: "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Creating a Database Other Applications Can Use ?
Date: 2001-08-25 06:45:18
Message-ID: Pine.BSI.4.33.0108250229130.232-100000@themode.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


Peter.....

> Under Linux and PostgreSQL I expected to create a single database file
> that I then would write code to access.....

You don't access the file, you access the postgresql server, it takes care
of storing the data transparently, some in memory, some on disk. The
language I use to talk to the database server (the postmaster, I think
it's called) is perl or php, C is also common. Each language has a
prewritten library of functions to insert, update, delete, etc., etc.

> I heard that pg_dump may have created a file but again I can't seem to
> find this file anywhere.....

Pg_dump dumps all the data out in ascii format as it stands at one point
in time, you use it for making a back up of the database or transporting
it to another database server.

brew

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Oliver Elphick 2001-08-25 17:59:31 Re: How to allow other users create databases ?
Previous Message Peter Moscatt 2001-08-25 03:00:21 Creating a Database Other Applications Can Use ?