Re: [INTERFACES] Create a database with ecpg

From: Michael Meskes <meskes(at)postgresql(dot)org>
To: PostgreSQL Interfaces <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: [INTERFACES] Create a database with ecpg
Date: 1999-09-27 18:36:52
Message-ID: 19990927203652.A1373@fam-meskes.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

On Tue, Sep 21, 1999 at 10:15:33PM -0300, rodneyr(at)embratel(dot)com(dot)br wrote:
> "EXEC SQL CREATE DATABASE testbase;"
>
> Then I compiled it, using ecpg, but the database was't been created.

In fact only a directory was created, right?

> When a try to open it with "psql" I receive the message:
>
> Connection to database 'testbase' failed.
> FATAL 1: Database testbase does not exist in pg_database
>
> Is there any mistake in my statement?

Yes and no. The statement itself is correct. However, the usage is not. I
take it you are executing the statement inside a transaction but do not
issue a commit afterwards. Thus pg_database is not updated at all.

Please try calling EXEC SQL COMMIT; after the CREATE DATABASE call. This
should work. At least it does for me.

Or call ecpg with parameter '-t' to switch off autotransaction mode. With
'-t' the CREATE DATABASE statement becomes a transaction for itself and thus
is committed once it returns.

Hope this helps.

Michael
--
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz | Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: Michael(at)Fam-Meskes(dot)De | Use PostgreSQL!

Browse pgsql-interfaces by date

  From Date Subject
Next Message Tim Joyce 1999-09-27 21:25:26 psql trerminal behaviour
Previous Message Hannu Krosing 1999-09-27 16:52:08 Re: [INTERFACES] webserver interface