Re: [GENERAL] TESTING the DATABASE

From: "Nigel J(dot) Andrews" <nandrews(at)investsystems(dot)co(dot)uk>
To: Himmet Karaman <karamanhi(at)itu(dot)edu(dot)tr>
Cc: postgreSQL Help Center <pgsql-admin(at)postgresql(dot)org>, pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] TESTING the DATABASE
Date: 2003-05-15 06:46:06
Message-ID: Pine.LNX.4.21.0305150740420.12078-100000@ponder.fairway2k.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general

On Thu, 15 May 2003, Himmet Karaman wrote:

> Hello to all,
> Is there anyone who can explain me briefly, how can I test the database
> that I created using PostgreSQL?
> Thanks a lot for the time you spent ...

Well, at a basic level...

$ psql mydbname
Welcome to psql 7.3.2, the PostgreSQL interactive terminal.

Type: \copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit

mydbname=> create table mytable ( a integer );
mydbname=> insert into mytable (a) values (1);
mydbname=> select * from mytable;
a
---
1
(1 row)

mydbname=>\q

The question is, what is it you want to test?

--
Nigel J. Andrews

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Himmet Karaman 2003-05-15 07:27:20 Re: [GENERAL] TESTING the DATABASE
Previous Message Himmet Karaman 2003-05-15 05:23:26 TESTING the DATABASE

Browse pgsql-general by date

  From Date Subject
Next Message Jeffrey Melloy 2003-05-15 07:02:15 Contrib module installed/JDBC
Previous Message James Gregory 2003-05-15 06:43:04 Re: table inheritance and foreign keys