2
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 13 hours ago. based on code collected 1 day ago.
May 17, 2023 — May 17, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Mention failure of ANT to delete directories on clean.
tester_123
as Bruce Momjian
More... almost 23 years ago
The following patch corrects a make install problem when building under Cygwin. The root cause of this problem is that (Sun) java is a native Win32 app and hence does not understand Cygwin Posix style paths. The solution is to use Cygwin's cygpath utility to convert the Posix style JDBC installation directory path into a Win32 one before invoking ant.
tester_123
as Bruce Momjian
More... almost 23 years ago
There are a number of changes. The main ones are: return oid on insert handle all primitive data types handle single quotes and newlines in Strings handle null variables deal with non public and final variables (not very well, though)
tester_123
as Bruce Momjian
More... almost 23 years ago
Fix ANT for *.properties files.
tester_123
as Bruce Momjian
More... almost 23 years ago
Fix ANT so it only has '*.class' files, not the 'tags' file.
tester_123
as Bruce Momjian
More... almost 23 years ago
Back out timezone fix. Not needed in jdbc1.
tester_123
as Bruce Momjian
More... almost 23 years ago
Prevent ANT from recreating the JAR files just because the errors.properties files were being copied.
tester_123
as Bruce Momjian
More... almost 23 years ago
Fix pg_index statistics query to join proper relation.
tester_123
as Bruce Momjian
More... about 23 years ago
Included is a patch that fixes a bug introduced in the lastest version (1.22) of interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java. That change removed a line that set the variable s to the value of the stringbuffer. This fix changes the following if checks to check the length of the stringbuffer instead of s, since s no longer contains the string the if conditions are expecting.
tester_123
as Bruce Momjian
More... about 23 years ago
Cleanup of backpatch of jdbc2 improvements to jdbc1:
tester_123
as Bruce Momjian
More... about 23 years ago
Fix 'make clean' with jdbc and ant by using filesets.
tester_123
as Bruce Momjian
More... about 23 years ago
Mark column as not used.
tester_123
as Bruce Momjian
More... about 23 years ago
Fix for HASH for index lookups in ODBC.
tester_123
as Bruce Momjian
More... about 23 years ago
This patch fixes a bug which occurs when setObject(1,obj) is called and obj is of type Object, and is null
tester_123
as Bruce Momjian
More... about 23 years ago
Add NUMERIC tests to jdbc code.
tester_123
as Bruce Momjian
More... about 23 years ago
I was trying to get a very nice FREE graphical db tool called DbVisualizer (http://www.ideit.com/products/dbvis/) to work with Postgresql and I found out the following bug: if database has views then getTables() gets the null pointer exception ('order by relname' makes the listing tree in DbVisualizer a lot useful !!)
tester_123
as Bruce Momjian
More... about 23 years ago
Change the line: return ((c == 't') || (c == 'T')); int the getBoolean function on line 184:ish to: return ((c == 't') || (c == 'T') (c == '1'));
tester_123
as Bruce Momjian
More... about 23 years ago
Backpatch jdbc2 fixes to jdbc1, ANT fixes, from Peter Eisentraut
tester_123
as Bruce Momjian
More... about 23 years ago
Backpatch getImportedKeys to jdbc1.
tester_123
as Bruce Momjian
More... about 23 years ago
Backpatch ORDER BY fix to jdbc1.
tester_123
as Bruce Momjian
More... about 23 years ago
Here's an easy patch for todays snapshot to sort the result of the
tester_123
as Bruce Momjian
More... about 23 years ago
jdbc2 implementation of getImportedKeys.
tester_123
as Bruce Momjian
More... about 23 years ago
The current implementation of BlobInputStream does not properly handle 8-bit unsigned data as it blindly casts the byte to an int, which java most helpfully promotes to a signed type. This causes problems when you can only return -1 to indicated EOF.
tester_123
as Bruce Momjian
More... about 23 years ago
Stamp CVS as 7.2. Update all interface version numbers. This is the time to do it, not during beta because people are using this stuff in production sometimes.
tester_123
as Bruce Momjian
More... about 23 years ago
that's just me again, here's normal patch for KOI8_U to jdbc/Connection.java
tester_123
as Bruce Momjian
More... about 23 years ago
Mention new jdbc mailing list instead of interfaces list.
tester_123
as Bruce Momjian
More... about 23 years ago
Fix paren typo in java.
tester_123
as Bruce Momjian
More... about 23 years ago
Update Peter Mount's email address in README.
tester_123
as Bruce Momjian
More... about 23 years ago
We're way past 6.3 ... More... about 23 years ago
Update. Things are now build through 'make'. More... about 23 years ago