2
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 9 hours ago. based on code collected about 21 hours ago.
May 22, 2023 — May 22, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Update. Things are now build through 'make'. More... about 23 years ago
Add uninstall target to Java build. Respect default port setting in JDBC driver. Pick up version number from Makefile.global. Change installation directory to share/java/. Document. More... about 23 years ago
Tue Mar 06 12:05:00 GMT 2001 [email protected] - Removed org.postgresql.xa.Test from the JDBC EE driver as it's an old test class and prevented it from compiling. More... about 23 years ago
Ok, I've split todays commit into three, the first two already done had some bits in JDBC & the first set of tools into contrib. More... about 23 years ago
Minor fixes... More... about 23 years ago
Some more updates... More... over 23 years ago
Web Feb 14 17:29:00 GMT 2001 [email protected] - Fixed bug in LargeObject & BlobOutputStream where the stream's output was not flushed when either the stream or the blob were closed. - Fixed PreparedStatement.setBinaryStream() where it ignored the length More... over 23 years ago
Some more including the patch to DatabaseMetaData backed out by Bruce. More... over 23 years ago
Remove postgresql jdbc files, per Peter.
tester_123
as Bruce Momjian
More... over 23 years ago
Remove postgresql jdbc files, per Peter Mount.
tester_123
as Bruce Momjian
More... over 23 years ago
Back out *inv* changes for this file. Peter want to handle it.
tester_123
as Bruce Momjian
More... over 23 years ago
Remove last code that assumed xinv/xinx are large object files.
tester_123
as Bruce Momjian
More... over 23 years ago
Some updates prior to retrieving a fresh cvs copy: More... over 23 years ago
Wed Jan 31 08:46:00 GMT 2001 [email protected] - Some minor additions to Statement to make our own extensions more portable. - Statement.close() will now call ResultSet.close() rather than just dissasociating with it. More... over 23 years ago
Tue Jan 30 22:24:00 GMT 2001 [email protected] - Fixed bug where Statement.setMaxRows() was a global setting. Now limited to just itself. - Changed LargeObject.read(byte[],int,int) to return the actual number of bytes read (used to be void). - LargeObject now supports InputStream's! - PreparedStatement.setBinaryStream() now works! - ResultSet.getBinaryStream() now returns an InputStream that doesn't copy the blob into memory first! - Connection.isClosed() now tests to see if the connection is still alive rather than if it thinks it's alive. More... over 23 years ago
Added an alternative constructor to PGSQLException so that debugging some more osteric bugs is easier. If only 1 arg is supplied and it's of type Exception, then that Exception's stacktrace is now included. More... over 23 years ago
This patch fixes an arrayindexoutofbounds exception that was just introduced into the code. The fix is a fix to org.postgresql.core.ByteArrayDim1.java.
tester_123
as Bruce Momjian
More... over 23 years ago
Attached is a revised patch that removes the static SimpleDateFormat objects that Thomas pointed out might be a problem.
tester_123
as Bruce Momjian
More... over 23 years ago
Removed the 8k row limit reported by DatabaseMetaData More... over 23 years ago
Fri Jan 19 08:47:00 GMT 2001 [email protected] - Applied patch submitted by John Schutz <[email protected]> that fixed a bug with ANT's SQL functions (not needed for building but nice to have fixed). More... over 23 years ago
Forgot to cvs add UpdateableResultSet.java ;-) More... over 23 years ago
Thu Jan 18 17:37:00 GMT 2001 [email protected] - Added new error message into errors.properties "postgresql.notsensitive" This is used by jdbc2.ResultSet when a method is called that should fetch the current value of a row from the database refreshRow() for example. - These methods no longer throw the not implemented but the new noupdate error. This is in preparation for the Updateable ResultSet support which will overide these methods by extending the existing class to implement that functionality, but needed to show something other than notimplemented: moveToCurrentRow() moveToInsertRow() rowDeleted() rowInserted() all update*() methods, except those that took the column as a String as they were already implemented to convert the String to an int. - getFetchDirection() and setFetchDirection() now throws "postgresql.notimp" as we only support one direction. The CursorResultSet will overide this when its implemented. - Created a new class under jdbc2 UpdateableResultSet which extends ResultSet and overides the relevent update methods. This allows us to implement them easily at a later date. - In jdbc2.Connection, the following methods are now implemented: createStatement(type,concurrency); getTypeMap(); setTypeMap(Map); - The JDBC2 type mapping scheme almost complete, just needs SQLInput & SQLOutput to be implemented. - Removed some Statement methods that somehow appeared in Connection. - In jdbc2.Statement() getResultSetConcurrency() getResultSetType() setResultSetConcurrency() setResultSetType() - Finally removed the old 6.5.x driver. More... over 23 years ago
Thu Jan 18 12:24:00 GMT 2001 [email protected] - These methods in org.postgresql.jdbc2.ResultSet are now implemented: getBigDecimal(int) ie: without a scale (why did this get missed?) getBlob(int) getCharacterStream(int) getConcurrency() getDate(int,Calendar) getFetchDirection() getFetchSize() getTime(int,Calendar) getTimestamp(int,Calendar) getType() NB: Where int represents the column name, the associated version taking a String were already implemented by calling the int version. - These methods no longer throw the not implemented but the new noupdate error. This is in preparation for the Updateable ResultSet support which will overide these methods by extending the existing class to implement that functionality, but needed to show something other than notimplemented: cancelRowUpdates() deleteRow() - Added new error message into errors.properties "postgresql.noupdate" This is used by jdbc2.ResultSet when an update method is called and the ResultSet is not updateable. A new method notUpdateable() has been added to that class to throw this exception, keeping the binary size down. - Added new error message into errors.properties "postgresql.psqlnotimp" This is used instead of unimplemented when it's a feature in the backend that is preventing this method from being implemented. - Removed getKeysetSize() as its not part of the ResultSet API More... over 23 years ago
Backed out:
tester_123
as Bruce Momjian
More... over 23 years ago
Attached is a set of patches for a couple of bugs dealing with timestamps in JDBC.
tester_123
as Bruce Momjian
More... over 23 years ago
Attached are patches for two fixes to reduce memory usage by the JDBC drivers.
tester_123
as Bruce Momjian
More... over 23 years ago
In looking at the 7.1beta1 code for JDBC, I noticed that support was added to support character set encodings. However I noticed that the encoding that is used isn't obtained from the DB. Since Java uses unicode UCS2 internally the character set encoding is used to translate strings from/to the DB encoding. So it seems logical that the code would get the encoding from the DB instead of the current method of requiring the user pass it as a parameter.
tester_123
as Bruce Momjian
More... over 23 years ago
Finished build.xml and updated Driver.java.in and buildDriver to match how Makefile and ANT operate. More... over 23 years ago
Finally created ant build.xml file More... over 23 years ago
Allow jdbc to return proper server version number
tester_123
as Bruce Momjian
More... over 23 years ago