Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed
От | Mark Kirkwood |
---|---|
Тема | Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed |
Дата | |
Msg-id | 4B9801A0.8080607@catalyst.net.nz обсуждение исходный текст |
Ответ на | Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed (Major Services <services.major@gmail.com>) |
Ответы |
Re: org.postgresql.util.PSQLException: Protocol error. Session
setup failed
|
Список | pgsql-jdbc |
Oh dear - probably missing imports or something in your code. Maybe try running a standalone java program from the command line (see below), as thats what I used to check this: $ export CLASSPAT=path-to-your-postgresql.jar:. $ java test1 ---- test1.java --- import java.sql.*; import java.util.*; public class test1 { public static void main( String args[] ) throws Exception { Class.forName("org.postgresql.Driver"); String url = "jdbc:postgresql://localhost:5432/postgres?user=postgres&password=major"; Properties props = new Properties(); props.setProperty("loglevel","2"); Connection conn = DriverManager.getConnection(url, props); System.out.println( "Connected to: " + url ); conn.close (); } } Major Services wrote: > Hi, > Following is the error report: > > org.apache.jasper.JasperException: Unable to compile class for JSP: > > An error occurred at line: 13 in the jsp file: /jsp/pgtest.jsp > Properties cannot be resolved to a type > > 10: { > 11: Class.forName("org.postgresql.Driver"); > 12: String url = "jdbc:postgresql://localhost:5432/postgres?user=postgres&password=major"; > 13: Properties props = new Properties(); > 14: props.setProperty("loglevel","2"); > > 15: Connection conn = DriverManager.getConnection(url, props); > 16: } >
В списке pgsql-jdbc по дате отправления: