Compare commits
3 commits
0d750fbe06
...
fdc3fcd3e2
Author | SHA1 | Date | |
---|---|---|---|
fdc3fcd3e2 | |||
5a1c5af6a5 | |||
d01695aff4 |
22 changed files with 309 additions and 404 deletions
gradle.properties
jdbc-mariadb/src/main/java/org/xbib/jdbc/mariadb
jdbc-oracle/src/main/java/org/xbib/jdbc/oracle
jdbc-postgresql/src/main/java/org/xbib/jdbc/postgresql
jdbc-query/src
main/java/org/xbib/jdbc/query
DatabaseImpl.javaFlavor.javaRow.javaRowsAdapter.javaSchema.javaSqlArgs.javaSqlInsert.javaSqlInsertImpl.javaSqlSelect.javaSqlSelectImpl.javaSqlUpdate.javaSqlUpdateImpl.javaStatementAdapter.java
flavor
test/java/org/xbib/jdbc/query/test
jdbc-test/src/main/java/org/xbib/jdbc/test
|
@ -1,3 +1,3 @@
|
|||
group = org.xbib
|
||||
name = database
|
||||
version = 2.4.0
|
||||
version = 2.5.0
|
||||
|
|
|
@ -117,11 +117,6 @@ public class MariaDB implements Flavor {
|
|||
return "datetime(3)"; // 3 = millisecond resolution
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeZonedDateTime() {
|
||||
return "datetime(3)"; // 3 = millisecond resolution
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeLocalDate() {
|
||||
return "date";
|
||||
|
|
|
@ -96,11 +96,6 @@ public class Oracle implements Flavor {
|
|||
return "timestamp with time zone";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeZonedDateTime() {
|
||||
return "timestamp with time zone";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeLocalDate() {
|
||||
// well, this is a full blown timestamp in Oracle
|
||||
|
|
|
@ -114,11 +114,6 @@ public class Postgresql implements Flavor {
|
|||
return "timestamp with time zone";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeZonedDateTime() {
|
||||
return "timestamp with time zone";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeLocalDate() {
|
||||
return "date";
|
||||
|
|
|
@ -12,6 +12,8 @@ import java.sql.Timestamp;
|
|||
import java.time.Duration;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
@ -477,6 +479,7 @@ public class DatabaseImpl implements Database {
|
|||
case Boolean b -> sql.argBoolean(k, b);
|
||||
case LocalDate localDate -> sql.argLocalDate(k, localDate);
|
||||
case LocalDateTime localDateTime -> sql.argLocalDateTime(k, localDateTime);
|
||||
case OffsetDateTime offsetDateTime -> sql.argOffsetDateTime(k, offsetDateTime);
|
||||
case null, default ->
|
||||
throw new DatabaseException("unknown type for param: " + (v != null ? v.getClass() : "null"));
|
||||
}
|
||||
|
@ -495,7 +498,9 @@ public class DatabaseImpl implements Database {
|
|||
case Long l -> sql.argLong(k, l);
|
||||
case Boolean b -> sql.argBoolean(k, b);
|
||||
case LocalDate localDate -> sql.argLocalDate(k, localDate);
|
||||
case LocalTime localTime -> sql.argLocalTime(k, localTime);
|
||||
case LocalDateTime localDateTime -> sql.argLocalDateTime(k, localDateTime);
|
||||
case OffsetDateTime offsetDateTime -> sql.argOffsetDateTime(k, offsetDateTime);
|
||||
case null -> sql.argNull(k);
|
||||
default -> throw new DatabaseException("unknown type for param: " + v.getClass());
|
||||
}
|
||||
|
@ -514,7 +519,9 @@ public class DatabaseImpl implements Database {
|
|||
case Long l -> sql.argLong(k, l);
|
||||
case Boolean b -> sql.argBoolean(k, b);
|
||||
case LocalDate localDate -> sql.argLocalDate(k, localDate);
|
||||
case LocalTime localTime -> sql.argLocalTime(k, localTime);
|
||||
case LocalDateTime localDateTime -> sql.argLocalDateTime(k, localDateTime);
|
||||
case OffsetDateTime offsetDateTime -> sql.argOffsetDateTime(k, offsetDateTime);
|
||||
case null -> sql.argNull(k);
|
||||
default -> throw new DatabaseException("unknown type for param: " + v.getClass());
|
||||
}
|
||||
|
@ -538,6 +545,7 @@ public class DatabaseImpl implements Database {
|
|||
case "java.lang.Boolean" -> row.add(rows.getBooleanOrFalse(i + 1));
|
||||
case "java.sql.Clob", "oracle.jdbc.OracleClob" -> row.add(rows.getClobStringOrEmpty(i + 1));
|
||||
case "java.sql.Date" -> row.add(rows.getLocalDateOrNull(i + 1));
|
||||
case "java.sql.Time" -> row.add(rows.getLocalTimeOrNull(i + 1));
|
||||
case "oracle.sql.TIMESTAMPTZ" -> row.add(rows.getOffsetDateTimeOrNull(i + 1));
|
||||
case "java.sql.Timestamp", "oracle.sql.TIMESTAMP" -> row.add(rows.getLocalDateTimeOrNull(i + 1));
|
||||
case "java.math.BigDecimal" -> row.add(rows.getBigDecimalOrNull(i + 1));
|
||||
|
|
|
@ -44,8 +44,6 @@ public interface Flavor {
|
|||
|
||||
String typeOffsetDateTime();
|
||||
|
||||
String typeZonedDateTime();
|
||||
|
||||
String typeLocalDate();
|
||||
|
||||
boolean useStringForClob();
|
||||
|
|
|
@ -4,12 +4,10 @@ import java.io.InputStream;
|
|||
import java.io.Reader;
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.ResultSetMetaData;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZoneId;
|
||||
import java.time.ZonedDateTime;
|
||||
|
||||
/**
|
||||
* Interface for reading results from a database query.
|
||||
|
@ -358,11 +356,17 @@ public interface Row {
|
|||
|
||||
InputStream getBlobInputStreamOrEmpty(String columnName);
|
||||
|
||||
Instant getInstantOrNull();
|
||||
LocalDate getLocalDateOrNull();
|
||||
|
||||
Instant getInstantOrNull(int columnOneBased);
|
||||
LocalDate getLocalDateOrNull(int columnOneBased);
|
||||
|
||||
Instant getInstantOrNull(String columnName);
|
||||
LocalDate getLocalDateOrNull(String columnName);
|
||||
|
||||
LocalTime getLocalTimeOrNull();
|
||||
|
||||
LocalTime getLocalTimeOrNull(int columnOneBased);
|
||||
|
||||
LocalTime getLocalTimeOrNull(String columnName);
|
||||
|
||||
LocalDateTime getLocalDateTimeOrNull();
|
||||
|
||||
|
@ -375,35 +379,4 @@ public interface Row {
|
|||
OffsetDateTime getOffsetDateTimeOrNull(int columnOneBase);
|
||||
|
||||
OffsetDateTime getOffsetDateTimeOrNull(String columnName);
|
||||
|
||||
ZonedDateTime getZonedDateTimeOrNull();
|
||||
|
||||
ZonedDateTime getZonedDateTimeOrNull(int columnOneBase);
|
||||
|
||||
ZonedDateTime getZonedDateTimeOrNull(String columnName);
|
||||
|
||||
/**
|
||||
* Retrieve column as LocalDate, .i.e, date with no time.
|
||||
*
|
||||
* @return LocalDate of the database column value
|
||||
*/
|
||||
LocalDate getLocalDateOrNull();
|
||||
|
||||
/**
|
||||
* Get the Date field, with no timestamp
|
||||
*
|
||||
* @param columnOneBased column number starting at 1, not 0
|
||||
* @return LocalDate of the column value
|
||||
*/
|
||||
|
||||
LocalDate getLocalDateOrNull(int columnOneBased);
|
||||
|
||||
/**
|
||||
* Get the Date field, with no timestamp
|
||||
*
|
||||
* @param columnName column name to retrieve
|
||||
* @return LocalDate of the column value
|
||||
*/
|
||||
|
||||
LocalDate getLocalDateOrNull(String columnName);
|
||||
}
|
||||
|
|
|
@ -9,11 +9,10 @@ import java.math.RoundingMode;
|
|||
import java.sql.ResultSet;
|
||||
import java.sql.ResultSetMetaData;
|
||||
import java.sql.SQLException;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZonedDateTime;
|
||||
|
||||
/**
|
||||
* Safely wrap a ResultSet and provide access to the data it contains.
|
||||
|
@ -657,25 +656,54 @@ class RowsAdapter implements Rows {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Instant getInstantOrNull() {
|
||||
return getInstantOrNull(column++);
|
||||
public LocalDate getLocalDateOrNull() {
|
||||
return getLocalDateOrNull(column++);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Instant getInstantOrNull(int columnOneBased) {
|
||||
public LocalDate getLocalDateOrNull(int columnOneBased) {
|
||||
try {
|
||||
column = columnOneBased + 1;
|
||||
return rs.getObject(columnOneBased, Instant.class);
|
||||
java.sql.Date val = rs.getDate(columnOneBased);
|
||||
return val == null ? null : val.toLocalDate();
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Instant getInstantOrNull(String columnName) {
|
||||
public LocalDate getLocalDateOrNull(String columnName) {
|
||||
try {
|
||||
column = rs.findColumn(columnName) + 1;
|
||||
return rs.getObject(columnName, Instant.class);
|
||||
java.sql.Date val = rs.getDate(columnName);
|
||||
return val == null ? null : val.toLocalDate();
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalTime getLocalTimeOrNull() {
|
||||
return getLocalTimeOrNull(column++);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalTime getLocalTimeOrNull(int columnOneBased) {
|
||||
try {
|
||||
column = columnOneBased + 1;
|
||||
java.sql.Time val = rs.getTime(columnOneBased);
|
||||
return val == null ? null : val.toLocalTime();
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalTime getLocalTimeOrNull(String columnName) {
|
||||
try {
|
||||
column = rs.findColumn(columnName) + 1;
|
||||
java.sql.Time val = rs.getTime(columnName);
|
||||
return val == null ? null : val.toLocalTime();
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
|
@ -706,33 +734,6 @@ class RowsAdapter implements Rows {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalDate getLocalDateOrNull() {
|
||||
return getLocalDateOrNull(column++);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalDate getLocalDateOrNull(int columnOneBased) {
|
||||
try {
|
||||
column = columnOneBased + 1;
|
||||
java.sql.Date val = rs.getDate(columnOneBased);
|
||||
return val == null ? null : val.toLocalDate();
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalDate getLocalDateOrNull(String columnName) {
|
||||
try {
|
||||
column = rs.findColumn(columnName) + 1;
|
||||
java.sql.Date val = rs.getDate(columnName);
|
||||
return val == null ? null : val.toLocalDate();
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public OffsetDateTime getOffsetDateTimeOrNull() {
|
||||
return getOffsetDateTimeOrNull(column++);
|
||||
|
@ -758,31 +759,6 @@ class RowsAdapter implements Rows {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZonedDateTime getZonedDateTimeOrNull() {
|
||||
return getZonedDateTimeOrNull(column++);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZonedDateTime getZonedDateTimeOrNull(int columnOneBased) {
|
||||
try {
|
||||
column = columnOneBased + 1;
|
||||
return rs.getObject(columnOneBased, ZonedDateTime.class);
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZonedDateTime getZonedDateTimeOrNull(String columnName) {
|
||||
try {
|
||||
column = rs.findColumn(columnName) + 1;
|
||||
return rs.getObject(columnName, ZonedDateTime.class);
|
||||
} catch (SQLException e) {
|
||||
throw new DatabaseException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer rowCount() {
|
||||
try {
|
||||
|
|
|
@ -238,9 +238,6 @@ public class Schema {
|
|||
case OffsetDateTime:
|
||||
sql.append(flavor.typeOffsetDateTime());
|
||||
break;
|
||||
case ZonedDateTime:
|
||||
sql.append(flavor.typeZonedDateTime());
|
||||
break;
|
||||
case LocalDate:
|
||||
sql.append(flavor.typeLocalDate());
|
||||
break;
|
||||
|
@ -418,7 +415,6 @@ public class Schema {
|
|||
Instant,
|
||||
LocalDateTime,
|
||||
OffsetDateTime,
|
||||
ZonedDateTime,
|
||||
LocalDate,
|
||||
Boolean
|
||||
}
|
||||
|
@ -939,10 +935,6 @@ public class Schema {
|
|||
return asType(ColumnType.OffsetDateTime);
|
||||
}
|
||||
|
||||
public Column asZonedateTime() {
|
||||
return asType(ColumnType.ZonedDateTime);
|
||||
}
|
||||
|
||||
public Column asLocalDate() {
|
||||
return asType(ColumnType.LocalDate);
|
||||
}
|
||||
|
|
|
@ -8,6 +8,8 @@ import java.sql.SQLException;
|
|||
import java.sql.Types;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
|
@ -133,7 +135,28 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
invocations.add(new Invocation(ColumnType.String, argName, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public SqlArgs argLocalDate(LocalDate arg) {
|
||||
invocations.add(new Invocation(ColumnType.LocalDate, null, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argLocalDate(String argName, LocalDate arg) {
|
||||
invocations.add(new Invocation(ColumnType.LocalDate, argName, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argLocalTime(LocalTime arg) {
|
||||
invocations.add(new Invocation(ColumnType.LocalTime, null, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argLocalTime(String argName, LocalTime arg) {
|
||||
invocations.add(new Invocation(ColumnType.LocalTime, argName, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argLocalDateTime(LocalDateTime arg) {
|
||||
invocations.add(new Invocation(ColumnType.LocalDateTime, null, arg));
|
||||
return this;
|
||||
|
@ -143,14 +166,14 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
invocations.add(new Invocation(ColumnType.LocalDateTime, argName, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argLocalDate(LocalDate arg) {
|
||||
invocations.add(new Invocation(ColumnType.LocalDate, null, arg));
|
||||
|
||||
public SqlArgs argOffsetDateTime(OffsetDateTime arg) {
|
||||
invocations.add(new Invocation(ColumnType.OffsetDateTime, null, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argLocalDate(String argName, LocalDate arg) {
|
||||
invocations.add(new Invocation(ColumnType.LocalDate, argName, arg));
|
||||
|
||||
public SqlArgs argOffsetDateTime(String argName, OffsetDateTime arg) {
|
||||
invocations.add(new Invocation(ColumnType.OffsetDateTime, argName, arg));
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -163,7 +186,17 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
invocations.add(new Invocation(ColumnType.LocalDateTimeNowPerDb, argName, null));
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
public SqlArgs argOffsetDateTimeNowPerDb() {
|
||||
invocations.add(new Invocation(ColumnType.OffsetDateTimeNowPerDb, null, null));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argOffsetDateTimeNowPerDb(String argName) {
|
||||
invocations.add(new Invocation(ColumnType.OffsetDateTimeNowPerDb, argName, null));
|
||||
return this;
|
||||
}
|
||||
|
||||
public SqlArgs argBlobBytes(byte[] arg) {
|
||||
invocations.add(new Invocation(ColumnType.BlobBytes, null, arg));
|
||||
return this;
|
||||
|
@ -283,12 +316,6 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
}
|
||||
break;
|
||||
case String:
|
||||
if (i.argName == null) {
|
||||
select.argString((String) i.arg);
|
||||
} else {
|
||||
select.argString(i.argName, (String) i.arg);
|
||||
}
|
||||
break;
|
||||
case ClobString:
|
||||
if (i.argName == null) {
|
||||
select.argString((String) i.arg);
|
||||
|
@ -299,7 +326,6 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
case ClobStream:
|
||||
throw new DatabaseException("Don't use Clob stream parameters with select statements");
|
||||
case BlobBytes:
|
||||
throw new DatabaseException("Don't use Blob parameters with select statements");
|
||||
case BlobStream:
|
||||
throw new DatabaseException("Don't use Blob parameters with select statements");
|
||||
case LocalDate:
|
||||
|
@ -309,6 +335,13 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
select.argLocalDate(i.argName, (LocalDate) i.arg);
|
||||
}
|
||||
break;
|
||||
case LocalTime:
|
||||
if (i.argName == null) {
|
||||
select.argLocalTime((LocalTime) i.arg);
|
||||
} else {
|
||||
select.argLocalTime(i.argName, (LocalTime) i.arg);
|
||||
}
|
||||
break;
|
||||
case LocalDateTime:
|
||||
if (i.argName == null) {
|
||||
select.argLocalDateTime((LocalDateTime) i.arg);
|
||||
|
@ -316,6 +349,13 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
select.argLocalDateTime(i.argName, (LocalDateTime) i.arg);
|
||||
}
|
||||
break;
|
||||
case OffsetDateTime:
|
||||
if (i.argName == null) {
|
||||
select.argOffsetDateTime((OffsetDateTime) i.arg);
|
||||
} else {
|
||||
select.argOffsetDateTime(i.argName, (OffsetDateTime) i.arg);
|
||||
}
|
||||
break;
|
||||
case LocalDateTimeNowPerDb:
|
||||
if (i.argName == null) {
|
||||
select.argLocalDateTimeNowPerDb();
|
||||
|
@ -323,6 +363,13 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
select.argLocalDateTimeNowPerDb(i.argName);
|
||||
}
|
||||
break;
|
||||
case OffsetDateTimeNowPerDb:
|
||||
if (i.argName == null) {
|
||||
select.argOffsetDateTimeNowPerDb();
|
||||
} else {
|
||||
select.argOffsetDateTimeNowPerDb(i.argName);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -416,6 +463,13 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
insert.argLocalDate(i.argName, (LocalDate) i.arg);
|
||||
}
|
||||
break;
|
||||
case LocalTime:
|
||||
if (i.argName == null) {
|
||||
insert.argLocalTime((LocalTime) i.arg);
|
||||
} else {
|
||||
insert.argLocalTime(i.argName, (LocalTime) i.arg);
|
||||
}
|
||||
break;
|
||||
case LocalDateTime:
|
||||
if (i.argName == null) {
|
||||
insert.argLocalDateTime((LocalDateTime) i.arg);
|
||||
|
@ -430,6 +484,13 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
insert.argLocalDateTimeNowPerDb(i.argName);
|
||||
}
|
||||
break;
|
||||
case OffsetDateTimeNowPerDb:
|
||||
if (i.argName == null) {
|
||||
insert.argOffsetDateTimeNowPerDb();
|
||||
} else {
|
||||
insert.argOffsetDateTimeNowPerDb(i.argName);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -523,6 +584,13 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
update.argLocalDate(i.argName, (LocalDate) i.arg);
|
||||
}
|
||||
break;
|
||||
case LocalTime:
|
||||
if (i.argName == null) {
|
||||
update.argLocalTime((LocalTime) i.arg);
|
||||
} else {
|
||||
update.argLocalTime(i.argName, (LocalTime) i.arg);
|
||||
}
|
||||
break;
|
||||
case LocalDateTime:
|
||||
if (i.argName == null) {
|
||||
update.argLocalDateTime((LocalDateTime) i.arg);
|
||||
|
@ -537,6 +605,13 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
update.argLocalDateTimeNowPerDb(i.argName);
|
||||
}
|
||||
break;
|
||||
case OffsetDateTimeNowPerDb:
|
||||
if (i.argName == null) {
|
||||
update.argOffsetDateTimeNowPerDb();
|
||||
} else {
|
||||
update.argOffsetDateTimeNowPerDb(i.argName);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -572,8 +647,11 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
BlobBytes,
|
||||
BlobStream,
|
||||
LocalDate,
|
||||
LocalTime,
|
||||
LocalDateTime,
|
||||
LocalDateTimeNowPerDb
|
||||
LocalDateTimeNowPerDb,
|
||||
OffsetDateTime,
|
||||
OffsetDateTimeNowPerDb
|
||||
}
|
||||
|
||||
private static class Invocation {
|
||||
|
@ -691,15 +769,15 @@ public class SqlArgs implements SqlInsert.Apply, SqlUpdate.Apply, SqlSelect.Appl
|
|||
args.argLocalDate(names[i], r.getLocalDateOrNull());
|
||||
break;
|
||||
case Types.TIMESTAMP:
|
||||
case Types.TIMESTAMP_WITH_TIMEZONE:
|
||||
if (this.scale[i] == 0) {
|
||||
// If the scale is 0, this is a LocalDate (no time/timezone).
|
||||
// Anything with a time will have a non-zero scale
|
||||
args.argLocalDate(names[i], r.getLocalDateOrNull());
|
||||
} else {
|
||||
args.argLocalDateTime(names[i], r.getLocalDateTimeOrNull());
|
||||
}
|
||||
break;
|
||||
case Types.TIMESTAMP_WITH_TIMEZONE:
|
||||
args.argOffsetDateTime(names[i], r.getOffsetDateTimeOrNull());
|
||||
break;
|
||||
case Types.NVARCHAR:
|
||||
case Types.VARCHAR:
|
||||
case Types.CHAR:
|
||||
|
|
|
@ -3,12 +3,10 @@ package org.xbib.jdbc.query;
|
|||
import java.io.InputStream;
|
||||
import java.io.Reader;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZoneId;
|
||||
import java.time.ZonedDateTime;
|
||||
|
||||
/**
|
||||
* Interface for configuring (setting parameters) and executing a chunk of SQL.
|
||||
|
@ -43,9 +41,13 @@ public interface SqlInsert {
|
|||
|
||||
SqlInsert argString( String argName, String arg);
|
||||
|
||||
SqlInsert argInstant(Instant arg);
|
||||
SqlInsert argLocalDate(LocalDate arg);
|
||||
|
||||
SqlInsert argInstant(String argName, Instant arg);
|
||||
SqlInsert argLocalDate(String argName, LocalDate arg);
|
||||
|
||||
SqlInsert argLocalTime(LocalTime arg);
|
||||
|
||||
SqlInsert argLocalTime(String argName, LocalTime arg);
|
||||
|
||||
SqlInsert argLocalDateTime(LocalDateTime arg);
|
||||
|
||||
|
@ -55,18 +57,14 @@ public interface SqlInsert {
|
|||
|
||||
SqlInsert argOffsetDateTime(String argName, OffsetDateTime arg);
|
||||
|
||||
SqlInsert argZonedDateTime(ZonedDateTime arg);
|
||||
|
||||
SqlInsert argZonedDateTime(String argName, ZonedDateTime arg);
|
||||
|
||||
SqlInsert argLocalDate(LocalDate arg);
|
||||
|
||||
SqlInsert argLocalDate( String argName, LocalDate arg);
|
||||
|
||||
SqlInsert argLocalDateTimeNowPerDb();
|
||||
|
||||
SqlInsert argLocalDateTimeNowPerDb(String argName);
|
||||
|
||||
SqlInsert argOffsetDateTimeNowPerDb();
|
||||
|
||||
SqlInsert argOffsetDateTimeNowPerDb(String argName);
|
||||
|
||||
SqlInsert argBlobBytes(byte[] arg);
|
||||
|
||||
SqlInsert argBlobBytes(String argName, byte[] arg);
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package org.xbib.jdbc.query;
|
||||
|
||||
import java.sql.Types;
|
||||
import java.time.LocalTime;
|
||||
import org.xbib.jdbc.query.util.DebugSql;
|
||||
import org.xbib.jdbc.query.util.InternalStringReader;
|
||||
import org.xbib.jdbc.query.util.Metric;
|
||||
|
@ -13,11 +14,9 @@ import java.sql.Connection;
|
|||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.Statement;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
|
@ -143,16 +142,6 @@ public class SqlInsertImpl implements SqlInsert {
|
|||
return namedArg(argName, adaptor.nullString(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argInstant(Instant arg) {
|
||||
return positionalArg(adaptor.nullInstant(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argInstant(String argName, Instant arg) {
|
||||
return namedArg(argName, adaptor.nullInstant(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argLocalDateTime(LocalDateTime arg) {
|
||||
return positionalArg(adaptor.nullLocalDateTime(arg));
|
||||
|
@ -164,13 +153,23 @@ public class SqlInsertImpl implements SqlInsert {
|
|||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argLocalDate( String argName, LocalDate arg) {
|
||||
public SqlInsert argLocalDate(LocalDate arg) {
|
||||
return positionalArg(adaptor.nullLocalDate(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argLocalDate(String argName, LocalDate arg) {
|
||||
return namedArg(argName, adaptor.nullLocalDate(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argLocalDate(LocalDate arg) {
|
||||
return positionalArg(adaptor.nullLocalDate(arg));
|
||||
public SqlInsert argLocalTime(LocalTime arg) {
|
||||
return positionalArg(adaptor.nullLocalTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argLocalTime(String argName, LocalTime arg) {
|
||||
return namedArg(argName, adaptor.nullLocalTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -183,16 +182,6 @@ public class SqlInsertImpl implements SqlInsert {
|
|||
return namedArg(argName, adaptor.nullOffsetDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argZonedDateTime(ZonedDateTime arg) {
|
||||
return positionalArg(adaptor.nullZonedDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argZonedDateTime(String argName, ZonedDateTime arg) {
|
||||
return namedArg(argName, adaptor.nullZonedDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argLocalDateTimeNowPerDb() {
|
||||
if (options.useClientClock()) {
|
||||
|
@ -209,6 +198,22 @@ public class SqlInsertImpl implements SqlInsert {
|
|||
return namedArg(argName, new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argOffsetDateTimeNowPerDb() {
|
||||
if (options.useClientClock()) {
|
||||
return positionalArg(adaptor.nullOffsetDateTime(OffsetDateTime.now()));
|
||||
}
|
||||
return positionalArg(new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argOffsetDateTimeNowPerDb(String argName) {
|
||||
if (options.useClientClock()) {
|
||||
return namedArg(argName, adaptor.nullOffsetDateTime(OffsetDateTime.now()));
|
||||
}
|
||||
return namedArg(argName, new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlInsert argBlobBytes(byte[] arg) {
|
||||
return positionalArg(adaptor.nullBytes(arg));
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
package org.xbib.jdbc.query;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
@ -41,9 +40,13 @@ public interface SqlSelect {
|
|||
|
||||
SqlSelect argString( String argName, String arg);
|
||||
|
||||
SqlSelect argInstant(Instant arg);
|
||||
SqlSelect argLocalDate(LocalDate arg);
|
||||
|
||||
SqlSelect argInstant(String argName, Instant arg);
|
||||
SqlSelect argLocalDate(String argName, LocalDate arg);
|
||||
|
||||
SqlSelect argLocalTime(LocalTime arg);
|
||||
|
||||
SqlSelect argLocalTime(String argName, LocalTime arg);
|
||||
|
||||
SqlSelect argLocalDateTime(LocalDateTime arg);
|
||||
|
||||
|
@ -53,22 +56,14 @@ public interface SqlSelect {
|
|||
|
||||
SqlSelect argOffsetDateTime(String argName, OffsetDateTime arg);
|
||||
|
||||
SqlSelect argZonedDateTime(ZonedDateTime arg);
|
||||
|
||||
SqlSelect argZonedDateTime(String argName, ZonedDateTime arg);
|
||||
|
||||
SqlSelect argLocalDate(LocalDate arg);
|
||||
|
||||
SqlSelect argLocalDate(String argName, LocalDate arg);
|
||||
|
||||
SqlSelect argInstantNowPerDb();
|
||||
|
||||
SqlSelect argInstantNowPerDb(String argName);
|
||||
|
||||
SqlSelect argLocalDateTimeNowPerDb();
|
||||
|
||||
SqlSelect argLocalDateTimeNowPerDb(String argName);
|
||||
|
||||
SqlSelect argOffsetDateTimeNowPerDb();
|
||||
|
||||
SqlSelect argOffsetDateTimeNowPerDb(String argName);
|
||||
|
||||
SqlSelect withTimeoutSeconds(int seconds);
|
||||
|
||||
SqlSelect withMaxRows(int rows);
|
||||
|
@ -131,17 +126,13 @@ public interface SqlSelect {
|
|||
*/
|
||||
List<String> queryStrings();
|
||||
|
||||
Instant queryInstantOrNull();
|
||||
|
||||
List<Instant> queryInstants();
|
||||
|
||||
LocalDateTime queryLocalDateTimeOrNull();
|
||||
|
||||
List<LocalDateTime> queryLocalDateTimes();
|
||||
|
||||
ZonedDateTime queryZonedDateTimeOrNull();
|
||||
OffsetDateTime queryOffsetDateTimeOrNull();
|
||||
|
||||
List<ZonedDateTime> queryZonedDateTimes();
|
||||
List<OffsetDateTime> queryOffsetDateTimes();
|
||||
|
||||
LocalDate queryLocalDateOrNull();
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package org.xbib.jdbc.query;
|
||||
|
||||
import java.time.LocalTime;
|
||||
import org.xbib.jdbc.query.util.DebugSql;
|
||||
import org.xbib.jdbc.query.util.Metric;
|
||||
import org.xbib.jdbc.query.util.RewriteArg;
|
||||
|
@ -9,11 +10,9 @@ import java.sql.Connection;
|
|||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
@ -137,16 +136,6 @@ public class SqlSelectImpl implements SqlSelect {
|
|||
return namedArg(argName, adaptor.nullString(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argInstant(Instant arg) {
|
||||
return positionalArg(adaptor.nullInstant(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argInstant(String argName, Instant arg) {
|
||||
return namedArg(argName, adaptor.nullInstant(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argLocalDateTime(LocalDateTime arg) {
|
||||
return positionalArg(adaptor.nullLocalDateTime(arg));
|
||||
|
@ -167,16 +156,6 @@ public class SqlSelectImpl implements SqlSelect {
|
|||
return namedArg(argName, adaptor.nullOffsetDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argZonedDateTime(ZonedDateTime arg) {
|
||||
return positionalArg(adaptor.nullZonedDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argZonedDateTime(String argName, ZonedDateTime arg) {
|
||||
return namedArg(argName, adaptor.nullZonedDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argLocalDate(LocalDate arg) {
|
||||
return positionalArg(adaptor.nullLocalDate(arg));
|
||||
|
@ -188,19 +167,13 @@ public class SqlSelectImpl implements SqlSelect {
|
|||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argInstantNowPerDb() {
|
||||
if (options.useClientClock()) {
|
||||
return positionalArg(adaptor.nullInstant(Instant.now()));
|
||||
}
|
||||
return positionalArg(new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
public SqlSelect argLocalTime(LocalTime arg) {
|
||||
return positionalArg(adaptor.nullLocalTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argInstantNowPerDb(String argName) {
|
||||
if (options.useClientClock()) {
|
||||
return namedArg(argName, adaptor.nullInstant(Instant.now()));
|
||||
}
|
||||
return namedArg(argName, new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
public SqlSelect argLocalTime(String argName, LocalTime arg) {
|
||||
return namedArg(argName, adaptor.nullLocalTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -218,7 +191,23 @@ public class SqlSelectImpl implements SqlSelect {
|
|||
}
|
||||
return namedArg(argName, new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public SqlSelect argOffsetDateTimeNowPerDb() {
|
||||
if (options.useClientClock()) {
|
||||
return positionalArg(adaptor.nullOffsetDateTime(OffsetDateTime.now()));
|
||||
}
|
||||
return positionalArg(new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect argOffsetDateTimeNowPerDb(String argName) {
|
||||
if (options.useClientClock()) {
|
||||
return namedArg(argName, adaptor.nullOffsetDateTime(OffsetDateTime.now()));
|
||||
}
|
||||
return namedArg(argName, new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlSelect withTimeoutSeconds(int seconds) {
|
||||
timeoutSeconds = seconds;
|
||||
|
@ -478,31 +467,6 @@ public class SqlSelectImpl implements SqlSelect {
|
|||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public Instant queryInstantOrNull() {
|
||||
return queryWithTimeout(rs -> {
|
||||
if (rs.next()) {
|
||||
return rs.getInstantOrNull(1);
|
||||
}
|
||||
return null;
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Instant> queryInstants() {
|
||||
return queryWithTimeout(rs -> {
|
||||
List<Instant> result = new ArrayList<>();
|
||||
while (rs.next()) {
|
||||
Instant value = rs.getInstantOrNull(1);
|
||||
if (value != null) {
|
||||
result.add(value);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public LocalDateTime queryLocalDateTimeOrNull() {
|
||||
return queryWithTimeout(rs -> {
|
||||
|
@ -528,32 +492,17 @@ public class SqlSelectImpl implements SqlSelect {
|
|||
}
|
||||
|
||||
@Override
|
||||
public ZonedDateTime queryZonedDateTimeOrNull() {
|
||||
return queryWithTimeout(rs -> {
|
||||
if (rs.next()) {
|
||||
return rs.getZonedDateTimeOrNull(1);
|
||||
}
|
||||
return null;
|
||||
});
|
||||
public OffsetDateTime queryOffsetDateTimeOrNull() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ZonedDateTime> queryZonedDateTimes() {
|
||||
return queryWithTimeout(rs -> {
|
||||
List<ZonedDateTime> result = new ArrayList<>();
|
||||
while (rs.next()) {
|
||||
ZonedDateTime value = rs.getZonedDateTimeOrNull(1);
|
||||
if (value != null) {
|
||||
result.add(value);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
});
|
||||
public List<OffsetDateTime> queryOffsetDateTimes() {
|
||||
return List.of();
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalDate queryLocalDateOrNull() {
|
||||
// Date without time
|
||||
return queryWithTimeout(rs -> {
|
||||
if (rs.next()) {
|
||||
return rs.getLocalDateOrNull(1);
|
||||
|
@ -564,7 +513,6 @@ public class SqlSelectImpl implements SqlSelect {
|
|||
|
||||
@Override
|
||||
public List<LocalDate> queryLocalDates() {
|
||||
// Date without time
|
||||
return queryWithTimeout(rs -> {
|
||||
List<LocalDate> result = new ArrayList<>();
|
||||
while (rs.next()) {
|
||||
|
|
|
@ -5,6 +5,8 @@ import java.io.Reader;
|
|||
import java.math.BigDecimal;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
|
||||
/**
|
||||
* Interface for configuring (setting parameters) and executing a chunk of SQL.
|
||||
|
@ -38,19 +40,31 @@ public interface SqlUpdate {
|
|||
SqlUpdate argString(String arg);
|
||||
|
||||
SqlUpdate argString(String argName, String arg);
|
||||
|
||||
SqlUpdate argLocalDateTime(LocalDateTime arg);
|
||||
|
||||
SqlUpdate argLocalDateTime(String argName, LocalDateTime arg);
|
||||
|
||||
SqlUpdate argLocalDate(LocalDate arg);
|
||||
|
||||
SqlUpdate argLocalDate(String argName, LocalDate arg);
|
||||
|
||||
SqlUpdate argLocalTime(LocalTime arg);
|
||||
|
||||
SqlUpdate argLocalTime(String argName, LocalTime arg);
|
||||
|
||||
SqlUpdate argLocalDateTime(LocalDateTime arg);
|
||||
|
||||
SqlUpdate argLocalDateTime(String argName, LocalDateTime arg);
|
||||
|
||||
SqlUpdate argOffsetDateTime(OffsetDateTime arg);
|
||||
|
||||
SqlUpdate argOffsetDateTime(String argName, OffsetDateTime arg);
|
||||
|
||||
SqlUpdate argLocalDateTimeNowPerDb();
|
||||
|
||||
SqlUpdate argLocalDateTimeNowPerDb(String argName);
|
||||
|
||||
SqlUpdate argOffsetDateTimeNowPerDb();
|
||||
|
||||
SqlUpdate argOffsetDateTimeNowPerDb(String argName);
|
||||
|
||||
SqlUpdate argBlobBytes(byte[] arg);
|
||||
|
||||
SqlUpdate argBlobBytes(String argName, byte[] arg);
|
||||
|
|
|
@ -2,6 +2,8 @@ package org.xbib.jdbc.query;
|
|||
|
||||
import java.sql.Statement;
|
||||
import java.sql.Types;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import org.xbib.jdbc.query.util.DebugSql;
|
||||
import org.xbib.jdbc.query.util.InternalStringReader;
|
||||
import org.xbib.jdbc.query.util.Metric;
|
||||
|
@ -27,7 +29,7 @@ import java.util.logging.Logger;
|
|||
*/
|
||||
public class SqlUpdateImpl implements SqlUpdate {
|
||||
|
||||
private static final Logger log = Logger.getLogger(Database.class.getName());
|
||||
private static final Logger logger = Logger.getLogger(SqlUpdateImpl.class.getName());
|
||||
|
||||
private final Connection connection;
|
||||
|
||||
|
@ -130,6 +132,16 @@ public class SqlUpdateImpl implements SqlUpdate {
|
|||
return namedArg(argName, adaptor.nullLocalDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argOffsetDateTime(OffsetDateTime arg) {
|
||||
return positionalArg(adaptor.nullOffsetDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argOffsetDateTime(String argName, OffsetDateTime arg) {
|
||||
return namedArg(argName, adaptor.nullOffsetDateTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argLocalDate(LocalDate arg) {
|
||||
return positionalArg(adaptor.nullLocalDate(arg));
|
||||
|
@ -140,6 +152,16 @@ public class SqlUpdateImpl implements SqlUpdate {
|
|||
return namedArg(argName, adaptor.nullLocalDate(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argLocalTime(LocalTime arg) {
|
||||
return positionalArg(adaptor.nullLocalTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argLocalTime(String argName, LocalTime arg) {
|
||||
return namedArg(argName, adaptor.nullLocalTime(arg));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argLocalDateTimeNowPerDb() {
|
||||
if (options.useClientClock()) {
|
||||
|
@ -156,6 +178,22 @@ public class SqlUpdateImpl implements SqlUpdate {
|
|||
return namedArg(argName, new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argOffsetDateTimeNowPerDb() {
|
||||
if (options.useClientClock()) {
|
||||
return positionalArg(adaptor.nullOffsetDateTime(OffsetDateTime.now()));
|
||||
}
|
||||
return positionalArg(new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argOffsetDateTimeNowPerDb(String argName) {
|
||||
if (options.useClientClock()) {
|
||||
return namedArg(argName, adaptor.nullOffsetDateTime(OffsetDateTime.now()));
|
||||
}
|
||||
return namedArg(argName, new RewriteArg(options.flavor().dbTimeMillis()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqlUpdate argBlobBytes(byte[] arg) {
|
||||
return positionalArg(adaptor.nullBytes(arg));
|
||||
|
@ -258,7 +296,7 @@ public class SqlUpdateImpl implements SqlUpdate {
|
|||
throw new DatabaseException("Batch insert requires parameters");
|
||||
}
|
||||
PreparedStatement ps = null;
|
||||
Metric metric = new Metric(log.isLoggable(Level.FINE));
|
||||
Metric metric = new Metric(logger.isLoggable(Level.FINE));
|
||||
String executeSql = sql;
|
||||
List<Object> firstRowParameters = null;
|
||||
List<List<Object>> parameters = new ArrayList<>();
|
||||
|
@ -300,19 +338,19 @@ public class SqlUpdateImpl implements SqlUpdate {
|
|||
logEx = e;
|
||||
throw DatabaseException.wrap(DebugSql.exceptionMessage(executeSql, firstRowParameters, errorCode, options), e);
|
||||
} finally {
|
||||
adaptor.closeQuietly(ps, log);
|
||||
adaptor.closeQuietly(ps, logger);
|
||||
metric.done("close");
|
||||
if (isSuccess) {
|
||||
DebugSql.logSuccess("Insert", log, metric, executeSql, firstRowParameters, options);
|
||||
DebugSql.logSuccess("Insert", logger, metric, executeSql, firstRowParameters, options);
|
||||
} else {
|
||||
DebugSql.logError("Insert", log, metric, errorCode, executeSql, firstRowParameters, options, logEx);
|
||||
DebugSql.logError("Insert", logger, metric, errorCode, executeSql, firstRowParameters, options, logEx);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private int updateInternal(int expectedNumAffectedRows) {
|
||||
PreparedStatement ps = null;
|
||||
Metric metric = new Metric(log.isLoggable(Level.FINE));
|
||||
Metric metric = new Metric(logger.isLoggable(Level.FINE));
|
||||
String executeSql = sql;
|
||||
List<Object> parameters = null;
|
||||
boolean isSuccess = false;
|
||||
|
@ -346,12 +384,12 @@ public class SqlUpdateImpl implements SqlUpdate {
|
|||
logEx = e;
|
||||
throw DatabaseException.wrap(DebugSql.exceptionMessage(executeSql, parameters, errorCode, options), e);
|
||||
} finally {
|
||||
adaptor.closeQuietly(ps, log);
|
||||
adaptor.closeQuietly(ps, logger);
|
||||
metric.done("close");
|
||||
if (isSuccess) {
|
||||
DebugSql.logSuccess("Update", log, metric, executeSql, parameters, options);
|
||||
DebugSql.logSuccess("Update", logger, metric, executeSql, parameters, options);
|
||||
} else {
|
||||
DebugSql.logError("Update", log, metric, errorCode, executeSql, parameters, options, logEx);
|
||||
DebugSql.logError("Update", logger, metric, errorCode, executeSql, parameters, options, logEx);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,13 +11,11 @@ import java.sql.SQLException;
|
|||
import java.sql.Statement;
|
||||
import java.sql.Timestamp;
|
||||
import java.sql.Types;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZoneId;
|
||||
import java.time.ZoneOffset;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.logging.Level;
|
||||
|
@ -97,18 +95,10 @@ public class StatementAdapter {
|
|||
}
|
||||
}
|
||||
|
||||
public Object nullInstant(Instant arg) {
|
||||
return arg == null ? new SqlNull(Types.TIMESTAMP) : Timestamp.valueOf(arg.atOffset(ZoneOffset.UTC).toLocalDateTime());
|
||||
}
|
||||
|
||||
public Object nullLocalDateTime(LocalDateTime arg) {
|
||||
return arg == null ? new SqlNull(Types.TIMESTAMP) : Timestamp.valueOf(arg);
|
||||
}
|
||||
|
||||
public Object nullZonedDateTime(ZonedDateTime arg) {
|
||||
return arg == null ? new SqlNull(Types.TIMESTAMP) : Timestamp.valueOf(arg.toLocalDateTime());
|
||||
}
|
||||
|
||||
public Object nullOffsetDateTime(OffsetDateTime arg) {
|
||||
return arg == null ? new SqlNull(Types.TIMESTAMP) : Timestamp.valueOf(arg.toLocalDateTime());
|
||||
}
|
||||
|
@ -117,6 +107,10 @@ public class StatementAdapter {
|
|||
return arg == null ? new SqlNull(Types.DATE) : java.sql.Date.valueOf(arg);
|
||||
}
|
||||
|
||||
public Object nullLocalTime(LocalTime arg) {
|
||||
return arg == null ? new SqlNull(Types.TIME) : java.sql.Time.valueOf(arg);
|
||||
}
|
||||
|
||||
public Object nullNumeric(Number arg) {
|
||||
if (arg == null) {
|
||||
return new SqlNull(Types.NUMERIC);
|
||||
|
|
|
@ -110,11 +110,6 @@ public class Derby implements Flavor {
|
|||
return "timestamptz";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeZonedDateTime() {
|
||||
return "timestamptz";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeLocalDate() {
|
||||
return "date";
|
||||
|
|
|
@ -110,11 +110,6 @@ public class H2 implements Flavor {
|
|||
return "timestamptz";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeZonedDateTime() {
|
||||
return "timestamptz";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeLocalDate() {
|
||||
return "date";
|
||||
|
|
|
@ -110,11 +110,6 @@ public class Hsql implements Flavor {
|
|||
return "timestamp with time zone";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeZonedDateTime() {
|
||||
return "timestamp with time zone";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String typeLocalDate() {
|
||||
return "date";
|
||||
|
|
|
@ -10,12 +10,9 @@ import java.io.StringReader;
|
|||
import java.math.BigDecimal;
|
||||
import java.sql.ResultSetMetaData;
|
||||
import java.sql.Types;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZoneId;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
@ -581,23 +578,6 @@ public class RowStub {
|
|||
return new ByteArrayInputStream(getBlobBytesOrZeroLen(columnName));
|
||||
}
|
||||
|
||||
@Override
|
||||
public Instant getInstantOrNull() {
|
||||
return toInstant(rows.get(row)[++col]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Instant getInstantOrNull(int columnOneBased) {
|
||||
col = columnOneBased;
|
||||
return toInstant(rows.get(row)[columnOneBased - 1]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Instant getInstantOrNull(String columnName) {
|
||||
col = columnIndexByName(columnName) + 1;
|
||||
return toInstant(rows.get(row)[columnIndexByName(columnName)]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalDateTime getLocalDateTimeOrNull() {
|
||||
return toLocalDateTime(rows.get(row)[++col]);
|
||||
|
@ -632,23 +612,6 @@ public class RowStub {
|
|||
return toOffsetDateTime(rows.get(row)[columnIndexByName(columnName)]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZonedDateTime getZonedDateTimeOrNull() {
|
||||
return toZonedDateTime(rows.get(row)[++col]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZonedDateTime getZonedDateTimeOrNull(int columnOneBased) {
|
||||
col = columnOneBased;
|
||||
return toZonedDateTime(rows.get(row)[columnOneBased - 1]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZonedDateTime getZonedDateTimeOrNull(String columnName) {
|
||||
col = columnIndexByName(columnName) + 1;
|
||||
return toZonedDateTime(rows.get(row)[columnIndexByName(columnName)]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LocalDate getLocalDateOrNull() {
|
||||
return toLocalDate(rows.get(row)[++col]);
|
||||
|
@ -735,28 +698,13 @@ public class RowStub {
|
|||
return (BigDecimal) o;
|
||||
}
|
||||
|
||||
private Instant toInstant(Object o) {
|
||||
if (o instanceof String s) {
|
||||
if (s.length() == "yyyy-MM-dd".length()) {
|
||||
return Instant.parse(s);
|
||||
}
|
||||
if (s.length() == "yyyy-MM-ddThh:mm:ss".length()) {
|
||||
return Instant.parse(s);
|
||||
}
|
||||
throw new DatabaseException("Didn't understand date string: " + s);
|
||||
}
|
||||
return (Instant) o;
|
||||
}
|
||||
|
||||
private LocalDateTime toLocalDateTime(Object o) {
|
||||
if (o instanceof String s) {
|
||||
if (s.length() == "yyyy-MM-dd".length()) {
|
||||
return LocalDateTime.parse(s, DateTimeFormatter.ofPattern("yyyy-MM-dd"))
|
||||
.atZone(ZoneId.systemDefault()).toLocalDateTime();
|
||||
return LocalDateTime.parse(s, DateTimeFormatter.ofPattern("yyyy-MM-dd"));
|
||||
}
|
||||
if (s.length() == "yyyy-MM-ddThh:mm:ss".length()) {
|
||||
return LocalDateTime.parse(s, DateTimeFormatter.ofPattern("yyyy-MM-ddThh:mm:ss"))
|
||||
.atZone(ZoneId.systemDefault()).toLocalDateTime();
|
||||
return LocalDateTime.parse(s, DateTimeFormatter.ofPattern("yyyy-MM-ddThh:mm:ss"));
|
||||
}
|
||||
throw new DatabaseException("Didn't understand date string: " + s);
|
||||
}
|
||||
|
@ -776,19 +724,6 @@ public class RowStub {
|
|||
return (OffsetDateTime) o;
|
||||
}
|
||||
|
||||
private ZonedDateTime toZonedDateTime(Object o) {
|
||||
if (o instanceof String s) {
|
||||
if (s.length() == "yyyy-MM-dd".length()) {
|
||||
return ZonedDateTime.parse(s, DateTimeFormatter.ofPattern("yyyy-MM-dd"));
|
||||
}
|
||||
if (s.length() == "yyyy-MM-ddThh:mm:ss".length()) {
|
||||
return ZonedDateTime.parse(s, DateTimeFormatter.ofPattern("yyyy-MM-ddThh:mm:ss"));
|
||||
}
|
||||
throw new DatabaseException("Didn't understand date string: " + s);
|
||||
}
|
||||
return (ZonedDateTime) o;
|
||||
}
|
||||
|
||||
private LocalDate toLocalDate(Object o) {
|
||||
if (o instanceof String) {
|
||||
return LocalDate.parse((String) o);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package org.xbib.jdbc.test;
|
||||
|
||||
import java.time.Instant;
|
||||
import org.junit.jupiter.api.AfterEach;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
@ -25,14 +26,12 @@ import java.io.Reader;
|
|||
import java.io.StringReader;
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.ResultSetMetaData;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.Month;
|
||||
import java.time.OffsetDateTime;
|
||||
import java.time.ZoneId;
|
||||
import java.time.ZoneOffset;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
import java.time.temporal.ChronoUnit;
|
||||
import java.util.ArrayList;
|
||||
|
@ -70,8 +69,6 @@ public abstract class CommonTest {
|
|||
|
||||
protected OffsetDateTime offsetDateTimeNow;
|
||||
|
||||
protected ZonedDateTime zonedDateTimeNow;
|
||||
|
||||
protected abstract DatabaseProvider createDatabaseProvider(OptionsOverride options) throws Exception;
|
||||
|
||||
@BeforeEach
|
||||
|
@ -79,7 +76,6 @@ public abstract class CommonTest {
|
|||
localDateTimeNow = LocalDateTime.now().truncatedTo(ChronoUnit.MILLIS);
|
||||
localDateNow = LocalDate.now();
|
||||
offsetDateTimeNow = OffsetDateTime.now();
|
||||
zonedDateTimeNow = ZonedDateTime.now();
|
||||
dbp = createDatabaseProvider(new OptionsOverride() {
|
||||
});
|
||||
db = dbp.get();
|
||||
|
@ -153,11 +149,10 @@ public abstract class CommonTest {
|
|||
.addColumn("date_millis").asLocalDateTime().table()
|
||||
.addColumn("local_date").asLocalDate().table()
|
||||
.addColumn("offset_date_time").asOffsetDateTime().table()
|
||||
.addColumn("tz_date_time").asZonedateTime().table()
|
||||
.schema()
|
||||
.execute(db);
|
||||
BigDecimal bigDecimal = new BigDecimal("5.3");
|
||||
db.toInsert("insert into dbtest values (?,?,?,?,?,?,?,?,?,?,?,?,?)")
|
||||
db.toInsert("insert into dbtest values (?,?,?,?,?,?,?,?,?,?,?,?)")
|
||||
.argInteger(1)
|
||||
.argLong(2L)
|
||||
.argFloat(3.2f)
|
||||
|
@ -170,10 +165,9 @@ public abstract class CommonTest {
|
|||
.argLocalDateTime(localDateTimeNow)
|
||||
.argLocalDate(localDateNow)
|
||||
.argOffsetDateTime(offsetDateTimeNow)
|
||||
.argZonedDateTime(zonedDateTimeNow)
|
||||
.insert(1);
|
||||
db.toSelect("select nbr_integer, nbr_long, nbr_float, nbr_double, nbr_big_decimal, str_varchar, str_fixed, str_lob, "
|
||||
+ "bin_blob, date_millis, local_date, offset_date_time, tz_date_time from dbtest")
|
||||
+ "bin_blob, date_millis, local_date, offset_date_time from dbtest")
|
||||
.query((RowsHandler<Void>) rs -> {
|
||||
assertTrue(rs.next());
|
||||
assertEquals(Integer.valueOf(1), rs.getIntegerOrNull(1));
|
||||
|
@ -220,14 +214,11 @@ public abstract class CommonTest {
|
|||
rs.getOffsetDateTimeOrNull(12).truncatedTo(ChronoUnit.SECONDS));
|
||||
assertEquals(offsetDateTimeNow.truncatedTo(ChronoUnit.SECONDS),
|
||||
rs.getOffsetDateTimeOrNull("offset_date_time").truncatedTo(ChronoUnit.SECONDS));
|
||||
// org.postgresql.util.PSQLException: conversion to class java.time.ZonedDateTime from timestamptz not supported
|
||||
// assertEquals(zonedDateTimeNow, rs.getZonedDateTimeOrNull(13));
|
||||
// assertEquals(zonedDateTimeNow, rs.getZonedDateTimeOrNull("tz_date_time"));
|
||||
return null;
|
||||
});
|
||||
// Repeat the above query, using the various methods that automatically infer the column
|
||||
db.toSelect("select nbr_integer, nbr_long, nbr_float, nbr_double, nbr_big_decimal, str_varchar, str_fixed, str_lob, "
|
||||
+ "bin_blob, date_millis, local_date, offset_date_time, tz_date_time from dbtest")
|
||||
+ "bin_blob, date_millis, local_date, offset_date_time from dbtest")
|
||||
.query((RowsHandler<Void>) rs -> {
|
||||
assertTrue(rs.next());
|
||||
assertEquals(Integer.valueOf(1), rs.getIntegerOrNull());
|
||||
|
@ -242,12 +233,10 @@ public abstract class CommonTest {
|
|||
assertEquals(localDateTimeNow, rs.getLocalDateTimeOrNull());
|
||||
assertEquals(localDateNow, rs.getLocalDateOrNull());
|
||||
assertEquals(offsetDateTimeNow.truncatedTo(ChronoUnit.SECONDS), rs.getOffsetDateTimeOrNull().truncatedTo(ChronoUnit.SECONDS));
|
||||
// org.postgresql.util.PSQLException: conversion to class java.time.ZonedDateTime from timestamptz not supported
|
||||
//assertEquals(zonedDateTimeNow, rs.getZonedDateTimeOrNull());
|
||||
return null;
|
||||
});
|
||||
db.toSelect("select nbr_integer, nbr_long, nbr_float, nbr_double, nbr_big_decimal, str_varchar, str_fixed, str_lob, "
|
||||
+ "bin_blob, date_millis, local_date, offset_date_time, tz_date_time from dbtest")
|
||||
+ "bin_blob, date_millis, local_date, offset_date_time from dbtest")
|
||||
.query((RowsHandler<Void>) rs -> {
|
||||
assertTrue(rs.next());
|
||||
assertEquals(1, rs.getIntegerOrZero());
|
||||
|
@ -262,8 +251,6 @@ public abstract class CommonTest {
|
|||
assertEquals(localDateTimeNow, rs.getLocalDateTimeOrNull());
|
||||
assertEquals(localDateNow, rs.getLocalDateOrNull());
|
||||
assertEquals(offsetDateTimeNow.truncatedTo(ChronoUnit.SECONDS), rs.getOffsetDateTimeOrNull().truncatedTo(ChronoUnit.SECONDS));
|
||||
// org.postgresql.util.PSQLException: conversion to class java.time.ZonedDateTime from timestamptz not supported
|
||||
//assertEquals(zonedDateTimeNow, rs.getZonedDateTimeOrNull());
|
||||
return null;
|
||||
});
|
||||
db.toSelect("select str_lob, bin_blob from dbtest").query((RowsHandler<Void>) rs -> {
|
||||
|
|
Loading…
Reference in a new issue