pgsql/src/interfaces/jdbc CHANGELOG build.xml ...

From: Peter Mount <peter(at)hub(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/interfaces/jdbc CHANGELOG build.xml ...
Date: 2001-01-18 17:37:16
Message-ID: 200101181737.f0IHbGQ28356@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /home/projects/pgsql/cvsroot
Module name: pgsql
Changes by: peter(at)hub(dot)org 01/01/18 12:37:15

Modified files:
src/interfaces/jdbc: CHANGELOG build.xml jdbc.jpx
src/interfaces/jdbc/org/postgresql: Connection.java
errors.properties
src/interfaces/jdbc/org/postgresql/jdbc1: Connection.java
src/interfaces/jdbc/org/postgresql/jdbc2: Connection.java
ResultSet.java
Statement.java

Log message:
Thu Jan 18 17:37:00 GMT 2001 peter(at)retep(dot)org(dot)uk
- 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.

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Mount 2001-01-18 17:38:50 pgsql/src/interfaces/jdbc/org/postgresql/jdbc2 ...
Previous Message Peter Mount 2001-01-18 14:50:15 pgsql/ rc/interfaces/jdbc/CHANGELOG rc/interfa ...