Fatal: Database does not exist

Поиск
Список
Период
Сортировка
От Suvanaket, Dear (MS)
Тема Fatal: Database does not exist
Дата
Msg-id 33039DBDED22BE47B9F45999ED0D7A0409926B@XMBTX143.northgrum.com
обсуждение исходный текст
Ответы Re: Fatal: Database does not exist
Список pgsql-admin
 
Hi,
 
I get the error "FATAL: Database "xxx" does not exist" when trying to connect to the database using JDBC. The superuser "postgres" owns my database and tables. However, it seems I can only connect to the database when the username matches the name of the database I am connecting to. I can't connect to the database as the superuser postgres who owns the database. For example, if my database were named "Trudy", I can only connect with a user named "Trudy".
 
The Java code I'm using to connect looks something like this:
 
  try{
         //Register the JDBC driver for PostgreSQL.
         Class.forName(driverType);
              
         //Get a connection to the database
         Connection conn = DriverManager.getConnection(url, username, password);
         PreparedStatement ps =
             conn.prepareStatement(jsassql);
           ps.execute();
           conn.close();
      }
      catch(Exception e){
         e.printStackTrace();
      }
 
Is there anyway to fix the access so I can use a superuser other than the one named after the database?
 

В списке pgsql-admin по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Wanting to run Postgres 8.3.6 on BSD/OS 4.3.1
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: Fatal: Database does not exist