CHANGELOG
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:4k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. Web Oct  7 22:00:00 BST 1998
  2. - removed syncronised from Connection.ExecSQL(). See next entry.
  3. - added new syncronised locking in the Connection.ExecSQL() and
  4.   FastPath.fastpath() methods. They now lock against the PG_Steam
  5.   object for the connection, which now provides full Thread Safety.
  6. - Reposted ChangeLog as it's missing from CVS.
  7. Modifications done since 6.3.2 was released and Sun Aug 30 11:33:06 BST 1998
  8. - Fixed PreparedStatement.setObject as it didn't handle shorts
  9. - ResultSet.getDate() now handles null dates (returns null ratrher
  10.   than a NullPointerException)
  11. - ResultSetMetaData.getPrecision() new returns 0 for VARCHAR
  12. - Field now caches the typename->oid in a Hashtable to speed things
  13.   up. It removes the need for some unnecessary queries to the backend.
  14. - PreparedStatement.toString() now returns the SQL statement that it
  15.   will send to the backend. Before it did nothing.
  16. - DatabaseMetaData.getTypeInfo() now does something.
  17. - Connection now throws an exception if either of the user or password
  18.   properties are missing, as they are required for JDBC to work.
  19.   This occasionally occurs when the client uses the properties version
  20.   of getConnection(), and is a common question on the email lists.
  21. Sun Aug 30 11:33:06 BST 1998
  22. - Created ChangeLog file, and entered stuff done since 6.3.2 and today
  23. - Change version number to 6.4 in Driver.java
  24. - Added fix to DatabaseMetaData.getTables() submitted by
  25.   Stefan Andreasen <stefan@linux.kapow.dk>
  26. - Added fix to DatabaseMetaData.getColumns() to handle patterns
  27.   submitted by Stefan Andreasen <stefan@linux.kapow.dk>
  28. - Set TcpNoDelay on the connection, as this gives us a 10x speed
  29.   improvement on FreeBSD (caused by a bug in their TCP Stack). They
  30.   should fix the bug before 6.4 is released, but will keep this
  31.   in here unless it causes more problems.
  32.   Submitted by Jason Venner <jason@idiom.com>
  33. - Removed a duplicate definition of fieldCache
  34. - Added a more meaningful message when the connection is refused. It
  35.   now says:
  36. Connection refused. Check that the hostname and port is
  37. correct, and that the postmaster is running with the -i flag,
  38. which enables TCP/IP networking.
  39. - Removed kludge in PreparedStatement.setDate() that acted as a
  40.   temporary fix to a bug in SimpleDateFormat, as it broke date
  41.   handling in JDK 1.1.6.
  42. - Modified PG_Stream and Connection, so that outbound data is now
  43.   buffered. This should give us a speed improvement, and reduce the
  44.   ammount of network packets generated.
  45. - Removed duplicate code and optimised PG_Stream.
  46. - PG_Stream now returns a more meaningful message when the connection
  47.   is broken by the backend. It now returns:
  48. The backend has broken the connection. Possibly the action you
  49. have attempted has caused it to close.
  50. - Removed obsolete code from Connection.
  51. - The error message returned when the authentication scheme is unknown
  52.   has been extended. It now reads:
  53. Authentication type ### not supported. Check that you have
  54. configured the pg_hba.conf file to include the client's IP
  55. address or Subnet, and is using a supported authentication
  56. scheme.
  57. - Connection.getMetaData() now caches the instance returned, so
  58.   multiple calls will return the same instance.
  59. - Created a test application that tests the DatabaseMetaData and
  60.   ResultSetMetaData classes.
  61. - Replaced getString(#).getBytes() with getBytes(#) which should speed
  62.   things up, and reduce memory useage.
  63. - Optimised DatabaseMetaData.getProcedures(), and implemented patterns
  64. - Fixed NullPointerExceptions thrown when a field is null (Internal
  65.   to the driver, not caused by results from the backend.
  66.   DatabaseMetaData.getProcedures() is an example of a method that
  67.   causes this):
  68. - ResultSetMetaData.getColumnName() now returns field# where
  69.   # is the column name.
  70. - ResultSet.getObject() fixed
  71. - Fixed bug in psql example that was affected by null fields
  72. - DatabaseMetaData.getTables()
  73. - DatabaseMetaData.getPrimaryKeys() ran a query with an ambiguous field
  74.   fixed.
  75. - getTypeInfo() optimised to increase speed and reduce memory useage
  76. - ResultSetMetaData.isCurrency() optimised and is now smaller.
  77. - Removed unnecessary code fromResultSetMetaData.getCatalogName()
  78.   and getSchemaName().
  79. - Created new class postgresql.util.PGmoney to map the money type
  80. - Created new class postgresql.geometric.PGline to map the line type