1. 19 2月, 2017 1 次提交
  2. 18 2月, 2017 1 次提交
  3. 13 2月, 2017 1 次提交
  4. 12 2月, 2017 1 次提交
  5. 09 2月, 2017 2 次提交
  6. 06 2月, 2017 2 次提交
  7. 02 2月, 2017 1 次提交
  8. 30 1月, 2017 1 次提交
  9. 26 1月, 2017 1 次提交
    • Ulrich Wielant's avatar
      Use System.nanoTime() to check timeouts · f3a1598b
      Ulrich Wielant 提交于
      System.currentTimeMillis() is influenced by system time corrections
      whereas System.nanoTime() is strongly sequential. So it is better to use
      System.nanoTime() when checking for timeouts and elapsed time.
      f3a1598b
  10. 23 1月, 2017 1 次提交
  11. 22 1月, 2017 1 次提交
  12. 21 1月, 2017 1 次提交
  13. 20 1月, 2017 7 次提交
  14. 19 1月, 2017 4 次提交
  15. 18 1月, 2017 3 次提交
  16. 17 1月, 2017 5 次提交
  17. 16 1月, 2017 2 次提交
  18. 15 1月, 2017 1 次提交
  19. 13 1月, 2017 1 次提交
  20. 12 1月, 2017 3 次提交
    • Philippe Marschall's avatar
      Implement createArrayOf and setArray (#418) · 790cf87b
      Philippe Marschall 提交于
      Currently java.sql.Array is only supported when returned from the
      database. Passing arrays to the database is not supported.
      Connection#createArrayOf, PreparedStatement#setArray and
      PreparedStatement#setObject with a java.sql.Array are not supported.
      
      This pull requests implements passing java.sql.Array objects to the
      database and includes the following changes:
      
       - implement Connection#createArrayOf
       - implement PreparedStatement#setArray
       - implement array support in ResultSet#getObject
       - implement conversion from java.sql.Array to Value
       - update DataType#convertTo to support arrays as well
       - add tests for #createArrayOf, #setArray and #setObject
       - add tests for #getObject with an array argument
       - remove the test for Connection#createArrayOf being unsupported
       - remove the test for PreparedStatement#setArray being unsupported
      
      The typeName passed to #createArrayOf is ignored, this is in accordance
      with JdbcArray#getBaseTypeName returning "NULL" and
      JdbcArray#getBaseType returning Types.NULL even if the backing array is
      homogeneous.
      790cf87b
    • Noel Grandin's avatar
      remove files accidentally committed · b7cd026b
      Noel Grandin 提交于
      b7cd026b
    • Noel Grandin's avatar
      Fixed bug in metadata locking · 6b8fc09d
      Noel Grandin 提交于
      6b8fc09d