Some more updates...
Peter Mount <peter@retep.org.uk>
Some more updates...
Fri Feb 17 15:11:00 GMT 2001 peter@retep.org.uk
- Reduced the object overhead in PreparedStatement by reusing the same
StringBuffer object throughout. Similarly SimpleDateStamp's are alse
reused in a thread save manner.
- Implemented in PreparedStatement: setNull(), setDate/Time/Timestamp
using Calendar, setBlob(), setCharacterStream()
- Clob's are now implemented in ResultSet & PreparedStatement!
- Implemented a lot of DatabaseMetaData & ResultSetMetaData methods.
We have about 18 unimplemented methods left in JDBC2 at the current
time.
Files
| Path | Change | +/− |
|---|---|---|
| src/interfaces/jdbc/CHANGELOG | modified | +11 −0 |
| src/interfaces/jdbc/org/postgresql/jdbc2/DatabaseMetaData.java | modified | +48 −24 |
| src/interfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java | modified | +159 −63 |
| src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java | modified | +53 −37 |
| src/interfaces/jdbc/org/postgresql/jdbc2/Statement.java | modified | +6 −0 |
| src/interfaces/jdbc/org/postgresql/largeobject/PGclob.java | added | +70 −0 |
| src/interfaces/jdbc/org/postgresql/test/jdbc2/TimestampTest.java | modified | +3 −2 |