jheise wrote:
sorry for my late post.
there is no url. i received a patched jdbc-driver from the guy who built the patch. he was really busy with his work at that time so he did not gave much info on how to get the sources out of postgres' cvs. i found some issues with postgres 7.2.x that should not occur with 7.3.x (but i still need to use 7.2.4). so i can supply you with the jar but i can not help you, if you run into problems.
jan
You can fix it yourself, the most simple way is to implement "wrapper" for
for JDBC driver and implement it this way:
void setInt(int index, int value)throws SQLException{
original.setString( index, Integer.toString(value) );
}
...
Looks like it conflicts with custom type support implementation on postgres and as I understand nobody going to rewrite it, but you can try it too.