RE: postgres jdbc source code
G'day mate,
Sure, it's fine to mail me...Actually I haven't found the time to get
involved in the JDBC driver (it now does what I need it to do, and I'm
behind schedule with a project of mine ;-) so your involvement is very
welcome!
Probably the best thing is to access the CVS but on the postgres FTP site
they also put a snapshot every so often. The opt package contains the jdbc
driver ('interface' in postgrespeak):
ftp://download.sourceforge.net/pub/mirrors/postgresql/dev/postgresql-opt-sna
pshot.tar.gz
The thing I modified was that setXXX methods in PreparedStatement have a
decent (and JDBC spec abiding) null parameter check. (I want, and the JDBC
spec demands, that when I call setObject(null), or setDate(null) a NULL
value, in the resulting query, gets send to the database.
The reason why PostgreSql is such a pain in the ass for Java developers is
that they have to use transactions to use BLOB's (when updating them, ok,
but _also_ when selecting them!). The solution in my opinion would be to
have transactions around ResultSets in autocommit mode...
A similar solution would probably not be wise for PreparedStatements,
because ps's get created ahead of use (could result in lot's of lingering
open transactions)
I'll send you my driver as well (Note that you have to change the JDBC1
implementation as well, I haven't checked but I should have kept them in
sync)
Greetz from the Low Lands,
Jeroen
Show quoted text
-----Original Message-----
From: Dmitri Colebatch [mailto:dim@nuix.com.au]
Sent: Friday, May 04, 2001 02:32
To: jeroen.habets@framfab.nl
Subject: postgres jdbc source codeJeroen,
Hi, hope its ok to email you - I found your email in the
postgres mail
archives. I'm trying to find the postgres jdbc driver source
code - I've had
a look through jdbc.postgresql.org without any luck.. I know
there's a lot of
stuff not implemented and would like to get stuck into it....
do you know
where I can find the source (or could I get it off you -
email attachment
would be fine).cheers
dim