Re: JSP to PostgreSql

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема Re: JSP to PostgreSql
Дата
Msg-id D960CB61B694CF459DCFB4B0128514C201ED270F@exadv11.host.magwien.gv.at
обсуждение исходный текст
Ответ на JSP to PostgreSql  ("Shavonne Marietta Wijesinghe" <shavonne.marietta@studioform.it>)
Ответы Re: JSP to PostgreSql  (Guillaume Cottenceau <gc@mnc.ch>)
Список pgsql-jdbc
Shavonne Marietta Wijesinghe wrote:
> Hello. I'm trying to connect my jsp page to read a database
> on a windows 2003 server.
>
> Class.forName("org.postgresql.Driver");
> Connection
myConn=DriverManager.getConnection("jdbc:postgresql://192.168.2.3:8080/database/FormAjax?user=postgres&password=form");
>
> But when i run this i get an "Exception report" error
>
> org.apache.jasper.JasperException: Exception in JSP:

My first instinct is to say: this is no exception generated by PostgreSQL.
Ask somewhere else!

But then I see the URL you use, and it looks wrong.
Given that your database name is "formajax", you should connect with the URL:

jdbc:postgresql://192.168.2.3:8080/formajax?user=postgres&password=form

Yours,
Laurenz Albe

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

Предыдущее
От: "Shavonne Marietta Wijesinghe"
Дата:
Сообщение: JSP to PostgreSql
Следующее
От: Guillaume Cottenceau
Дата:
Сообщение: Re: JSP to PostgreSql