Re: Use Driver to Create database? - Mailing list pgsql-jdbc

From Heikki Linnakangas
Subject Re: Use Driver to Create database?
Date
Msg-id 4560D4DA.7090708@enterprisedb.com
Whole thread Raw
In response to Re: Use Driver to Create database?  (Roland Walter <roland.walter.rwa@gmx.net>)
Responses Re: Use Driver to Create database?
List pgsql-jdbc
Roland Walter wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Charlie Kelly wrote:
>> Is it possible to use the driver to create a new database (inside a java
>> program),
>> or is it necessary to first create the database using the createdb utility?
>>
>> If it is possible to use the driver, what is the correct syntax?
>>
>
> There is a SQL-command for that, look here:
>
>
> http://www.postgresql.org/docs/8.1/interactive/sql-createdatabase.html
>
> First connect to the postgres or template1 schema of the cluster, that
> you created with initdb. Execute the "CREATE DATABASE". Reconnect to the
> database you created.

You don't want to connect to template1, though, if the program is going
to be used concurrently by more than one use. Template1 is used as
template (hence the name) to make the new database, and it will throw an
error if there's any other users connected to it beside the one issuing
the CREATE DATABASE command.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

pgsql-jdbc by date:

Previous
From: Roland Walter
Date:
Subject: Re: Use Driver to Create database?
Next
From: John R Pierce
Date:
Subject: Re: Use Driver to Create database?