2
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 16 hours ago. based on code collected 1 day ago.
May 22, 2023 — May 22, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
At this moment, --enable-debug adds debugging information to most of the parts o f postgresql. The jdbc drivers are never compiled with debugging support. This p atch make sure that debugging information is added to the jdbc jar when the --en able-debug is added. This was usefull for me for debugging some java jdbc poolin g objects but this might perhaps be usefull for other people too?
tester_123
as Bruce Momjian
More... about 22 years ago
Doug Fields patch to prevent exception being thrown on zero length arrays More... about 22 years ago
patch from Zhenbang Wei The errors_zh_TW.properties must be translated using native2ascii or it will raise an exception. Please replace the old file. More... about 22 years ago
Patch from Ryouichi Matsuda An attached patch corrects problem of this bug and fractional second. More... about 22 years ago
patch from Mitchel Friedman to fix getTables More... about 22 years ago
patch from Vicktor to fix Numeric decimal digits in getColumns More... about 22 years ago
Implementation for cancelQuery by Grant Finnemore <[email protected]> More... about 22 years ago
compiles correctly but still doesn't work with jdk 1.4 More... about 22 years ago
fixed compile error More... about 22 years ago
This patch fixes the exception thrown to inform the user the method getColumnClassName(int) is not implemented. This will futher fixes method ResultSet.getObject(int) since it requires the getColumnClassName(int) method to return the proper java class used to map the database column. More... about 22 years ago
Patch from Cormac Twomey fixes getIndexInfo throwing NullPointerException fixes getIndexInfo improper results when multiple key indexs are used More... about 22 years ago
Patch from Cormac Twomey fixes getIndexInfo throwing NullPointerException fixes getIndexInfo improper results when multiple key indexs are used More... about 22 years ago
now compiles clean with jdk 1.4 More... about 22 years ago
Fixes to getImportedKeys/getExportedKeys from Jason Davies Previous versions did not correctly identify primary/foreign keys More... over 22 years ago
Applied patch submitted by Ryouichi Matsuda ([email protected]) that fixed a problem with leading zeros being lost on fractional seconds when setting a timestamp value on a PreparedStatement. More... over 22 years ago
Applied patch from Ryouichi Matsuda <[email protected]> where the jdbc driver was not properly handling timestamptz datatype when using the getObject() method on ResultSet. Fix adds this datatype to the object mappings. More... over 22 years ago
Bugfix for bug reported by Marcus Better ([email protected]). When preforming a get on a bytea value the code was running the raw value from the server through character set conversion, which if the character set was SQL_ASCII would cause all 8bit characters to become ?'s. More... over 22 years ago
Applied patch from Thomas O'Dowd that fixes timestamp parsing. The jdbc code wasn't updated to handle more than two decimal digits for fractional seconds that now are possible in 7.2. This patch fixes the timestamp parsing logic. I have built and tested on both jdbc1 and jdbc2. More... over 22 years ago
Patch from Ned Wolpert that fixes a bug that caused the cache of types not to be used, causing extra sql statements to be executed. This was a significant performance problem with the database meta data classes. The fix is a simple one liner. More... over 22 years ago
This patch fixes a bug reported by Graham Leggett ([email protected]). The bug was that any insert or update would fail if the returned oid was larger than a signed int. Since OIDs are unsigned int's it was a bug that the code used a java signed int to deal with the values. The bug would result in the error message: "Unable to fathom update count". While fixing the bug, it became apparent that other code made a similar assumption about OIDs being signed ints. Therefore some methods that returned or took OIDs are arguements also needed to be changed. Since we are so close to the 7.2 release I have added new methods that return longs and deprecated the old methods returning ints. Therefore all old code should still work without requiring a code change to cast from long to int. Also note that the methods below are PostgreSQL specific extensions to the JDBC api are are not part of the spec from Sun, thus it is unlikely that they are used much or at all. More... over 22 years ago
Change 'return ;' to 'return;'; remove space.
tester_123
as Bruce Momjian
More... over 22 years ago
Indent jdbc case labels using pgjindent.
tester_123
as Bruce Momjian
More... over 22 years ago
More jdbc comment cleanups. Code looks very nice now.
tester_123
as Bruce Momjian
More... over 22 years ago
JDBC indenting, comment cleanups.
tester_123
as Bruce Momjian
More... over 22 years ago
fixes getIndex to work with forte's transparent persistence More... over 22 years ago
Attached is a patch against the CVS repository that fixes the ResultSet absolute() problem. There's also a little fix for the getRow() method. While fixing absolute(), I noticed that getRow() wasn't quite following the spec: it wasn't returning 0 when the ResultSet wasn't positioned on a row. I've started a ResultSet test case and included it as well. More... over 22 years ago
fixed bug in ResultSet. Version 1.29 backed out two previous fixes (1.26 and 1.25). This checkin add back those two previous fixes. Problem reported by Daniel Germain More... over 22 years ago
Commit to support MD5 passwords as per the backend for 7.2. This patch was submitted by Jeremy Wohl [email protected] More... over 22 years ago
Jason Davies patch to getImported/getExported keys More... over 22 years ago
proper select for Jason Davies patch to getImportedKeys More... over 22 years ago