log src/main/java/org/monetdb/jdbc/MonetResultSet.java @ 975:5e320086a01c default tip

age author description
3 weeks ago Martin van Dinther Optimisation, call connection.mapClobAsVarChar() and connection.mapBlobAsVarBinary() outside the for-loop, as it does not change.
3 months ago Sjoerd Mullender Spell check.
4 months ago Martin van Dinther Update Copyright year.
13 months ago Martin van Dinther Optimise code, use append(char) instead of append(String)
16 months ago Sjoerd Mullender Update copyright for the new year, move to MonetDB Foundation, add SPDX.
16 months ago Martin van Dinther In ResultSet.getObject(column, Class<T> type) and ResultSet.getObject(column, Map<String,Class<?>>) methods added support to return objects for classes: java.time.LocalDate, java.time.LocalDateTime.
16 months ago Martin van Dinther In ResultSet.getObject() method added support for retrieving
21 months ago Martin van Dinther Implemented ResultSet methods:
21 months ago Martin van Dinther Reduce code by importing java.sql.Date; and remove prefix java.sql. where no longer needed.
22 months ago Martin van Dinther Fixed javac version 20 compiler warnings.
2023-02-16 Martin van Dinther Disable checks for Types.LONGVARCHAR and Types.LONGVARBINARY as MonetDB server does not support these data types, and no mappings exists to these JDBC Types and thus these cases will never be reached in JDBC Driver.
2023-01-26 Martin van Dinther Fixed issue when you create a new Statement, call getGeneratedKeys().getMetaData().
2023-01-05 Martin van Dinther Updated Copyright year.
2023-01-04 Martin van Dinther Moving static method getClassForType() from MonetResulSet to MonetDriver class which is a much more logical place.
2023-01-04 Martin van Dinther Improve implementation of ResultSet.getMetaData().