1. 23 9月, 2001 7 次提交
  2. 22 9月, 2001 12 次提交
  3. 21 9月, 2001 8 次提交
  4. 20 9月, 2001 3 次提交
  5. 19 9月, 2001 3 次提交
  6. 18 9月, 2001 4 次提交
  7. 17 9月, 2001 3 次提交
    • B
      Attached is a patch that fixes ResultSetMetaData.isNullable() in · 4f63a0e1
      Bruce Momjian 提交于
      the JDBC driver.
      
      This method is currently unimplemented and always returns
      ResultSetMetaData.columnNullable. This is obviously incorrect
      when a column is defined with NOT NULL or PRIMARY KEY. And we
      have to think of check constraints, views, functions etc.
      
      The patch simply changes the return value to
      ResultSetMetaData.columnNullableUnknown. This is until someone
      comes up with a real implementation of course.
      
      On Fri, 14 Sep 2001 17:53:50 +0200, Tomisaw Kity?ski wrote:
      >Hello there,
      >
      >could someone tell me, please, do I have any chance to get
      >proper implementation of above method in JDBC (1.1+) soon?
      >
      >Current "return 1" works fine on most tables, however it seems
      >to be a little bit incorrect with some of them ;)
      
      Ren? Pijlman
      4f63a0e1
    • B
      I'm attaching a patch which fixes the corruption in strings caused · 6e63468f
      Bruce Momjian 提交于
      by escape processing in the SQL statement. I've tested this for a
      while now and it appears to work well. Previously string data
      with {d was getting corrupt as the {d was being stripped regardless
      of whether it was an escape code or not.
      
      I also added checking for time and timestamp escape processing strings
      as per 11.3 in the specification. The patch is against the latest
      CVS.
      
      Thomas O'Dowd
      6e63468f
    • H
      Change vacuumlo to take 'lo' type into account. · c6cb8701
      Hiroshi Inoue 提交于
      c6cb8701