[JDBC] Re: AGAIN: still no answer ... peter, or anybody knowledgeable,please ....

2001-05-08 Thread Michael Stephenson
The current CVS sources look wrong to me. It has: if (result != null) ((org.postgresql.ResultSet)result.reallyResultSet()) Shouldn't this be: if (result != null ((org.postgresql.ResultSet)result.reallyResultSet())) Not sure if the extra parens are needed for: if (result !=

[JDBC] Re: ? (question mark) characters

2001-08-30 Thread Michael Stephenson
Ok, I tried all the drivers currently available at http://jdbc.fastcrypt.com. They all seem to correct the problem with long (8k) SQL statements, but they're all broken considering Portuguese characters like áéíóú (aeiou with accent)... they are replaced by question marks (?)... any ideas?

Re: [JDBC] no suitable driver

2001-09-11 Thread Michael Stephenson
Then I changed the dbUrl string to: private static final String dbUrl = jdbc:postgresql//wetwang.ontko.com/demo; Any thoughts about what I've done wrong here? This might not be the only problem, but your URL is missing a colon, should be: jdbc:postgresql://wetwang.ontko.com/demo