1. 17 9月, 2003 1 次提交
  2. 16 9月, 2003 2 次提交
  3. 13 9月, 2003 1 次提交
    • B
      More SQLState updates from Kim Ho at Redhat. · 509a9cd3
      Barry Lind 提交于
      Also a patch from Kris Jurka to correctly report SQLState support.
      
       Modified Files:
       	jdbc/org/postgresql/Driver.java.in
       	jdbc/org/postgresql/core/QueryExecutor.java
       	jdbc/org/postgresql/fastpath/Fastpath.java
       	jdbc/org/postgresql/geometric/PGbox.java
       	jdbc/org/postgresql/geometric/PGcircle.java
       	jdbc/org/postgresql/geometric/PGline.java
       	jdbc/org/postgresql/geometric/PGlseg.java
       	jdbc/org/postgresql/geometric/PGpath.java
       	jdbc/org/postgresql/geometric/PGpoint.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSetMetaData.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java
       	jdbc/org/postgresql/jdbc2/Array.java
       	jdbc/org/postgresql/jdbc3/AbstractJdbc3DatabaseMetaData.java
       	jdbc/org/postgresql/util/PGmoney.java
       	jdbc/org/postgresql/util/PSQLState.java
      509a9cd3
  4. 11 9月, 2003 1 次提交
  5. 09 9月, 2003 5 次提交
    • B
      62b53acc
    • B
      Additional SQLState work for JDBC - thanks to Kim Ho at Redhat for input on this · 5cdf771d
      Barry Lind 提交于
       Modified Files:
       	jdbc/build.xml jdbc/org/postgresql/core/QueryExecutor.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
       	jdbc/org/postgresql/util/PSQLState.java
      5cdf771d
    • M
      - Added Dave patch for Informix handling of numeric/int conversion. · fcdf0e22
      Michael Meskes 提交于
      - Changed all new datatypes to lowercase.
      - Fixed rounding bug in numerical types.
      fcdf0e22
    • B
      Opps, can't forget the new file. This is part of the last commit to apply · 05dddf40
      Barry Lind 提交于
      the redhat patch for SQLState support.
      
       Added Files:
       	PSQLState.java
      05dddf40
    • B
      This set of changes applies a patch from KHO at redhat to add some SQLState · 0378a269
      Barry Lind 提交于
      support to the jdbc driver.
      That patch needed some work: it assumed the sqlcode in a server message was
      fixed in its position, the patch lost the ability to pass exceptions, and the
      patch missed a couple of places where server errors where being received.
      In addition to fixing the above, I also added full support for the V3 protocol
      error message syntax, I reversed the order of arguments in the PSQLException
      constructor to more closely follow the constructors for SQLException, I changed
      the new constructors that take PSQLState to take Object for additional
      parameters as the old ones did.
      Still todo are to add SQLState values to all existing exceptions thrown in the
      driver and add support for parsing the V3 protocol format for notices.
      
       Modified Files:
       	jdbc/build.xml jdbc/org/postgresql/Driver.java.in
       	jdbc/org/postgresql/errors.properties
       	jdbc/org/postgresql/core/Encoding.java
       	jdbc/org/postgresql/core/PGStream.java
       	jdbc/org/postgresql/core/QueryExecutor.java
       	jdbc/org/postgresql/fastpath/Fastpath.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
       	jdbc/org/postgresql/util/MessageTranslator.java
       	jdbc/org/postgresql/util/PSQLException.java
      0378a269
  6. 07 9月, 2003 1 次提交
    • B
      Changes for MinGW/WIN32: · 4b407f6c
      Bruce Momjian 提交于
              o allow configure to see include/port/win32 include files
              o add matching Win32 accept() prototype
              o allow pg_id to compile with native Win32 API
              o fix invalide mbvalidate() function calls (existing bug)
              o allow /scripts to compile with native Win32 API
              o add win32.c to Win32 compiles (already in *.mak files)
      4b407f6c
  7. 05 9月, 2003 2 次提交
  8. 03 9月, 2003 1 次提交
  9. 02 9月, 2003 1 次提交
  10. 01 9月, 2003 1 次提交
  11. 27 8月, 2003 2 次提交
  12. 26 8月, 2003 1 次提交
    • B
      Attempt to fix setMaxFieldSize() logic that was checked in yesterday. · 06bbd98a
      Barry Lind 提交于
      I think this should fix the problem, but since I don't have a reproducable test
      case, I can't be sure.  This problem is reported by Kim Ho of redhat, who will
      test this fix.  This also includes a test case for the original functionality.
      
       Modified Files:
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
       	jdbc/org/postgresql/test/jdbc2/ResultSetTest.java
      06bbd98a
  13. 25 8月, 2003 4 次提交
  14. 23 8月, 2003 1 次提交
  15. 21 8月, 2003 1 次提交
  16. 16 8月, 2003 2 次提交
  17. 14 8月, 2003 2 次提交
    • T
      libpq failed to cope with COPY FROM STDIN if the command was issued · c01641f8
      Tom Lane 提交于
      via extended query protocol, because it sends Sync right after Execute
      without realizing that the command to be executed is COPY.  There seems
      to be no reasonable way for it to realize that, either, so the best fix
      seems to be to make the backend ignore Sync during copy-in mode.  Bit of
      a wart on the protocol, but little alternative.  Also, libpq must send
      another Sync after terminating the COPY, if the command was issued via
      Execute.
      c01641f8
    • T
      Add PQexecPrepared() and PQsendQueryPrepared() functions, to allow · 0be731ad
      Tom Lane 提交于
      libpq users to perform Bind/Execute of previously prepared statements.
      Per yesterday's discussion, this offers enough performance improvement
      to justify bending the 'no new features during beta' rule.
      0be731ad
  18. 13 8月, 2003 1 次提交
  19. 12 8月, 2003 8 次提交
  20. 11 8月, 2003 1 次提交
  21. 09 8月, 2003 1 次提交