Re: Use Driver to Create database?

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: Use Driver to Create database?
Дата
Msg-id 4560D4DA.7090708@enterprisedb.com
обсуждение исходный текст
Ответ на Re: Use Driver to Create database?  (Roland Walter <roland.walter.rwa@gmx.net>)
Ответы Re: Use Driver to Create database?
Список 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 по дате отправления:

Предыдущее
От: Roland Walter
Дата:
Сообщение: Re: Use Driver to Create database?
Следующее
От: John R Pierce
Дата:
Сообщение: Re: Use Driver to Create database?