[jOOQ/jOOQ#11700] Support binding floats in Oracle via R2DBC
This commit is contained in:
parent
243cedc2ae
commit
6fb60a5364
@ -108,6 +108,7 @@ import static org.jooq.impl.Keywords.K_TIME_WITH_TIME_ZONE;
|
||||
import static org.jooq.impl.Keywords.K_TRUE;
|
||||
import static org.jooq.impl.Keywords.K_YEAR_TO_DAY;
|
||||
import static org.jooq.impl.Keywords.K_YEAR_TO_FRACTION;
|
||||
import static org.jooq.impl.R2DBC.isR2dbc;
|
||||
import static org.jooq.impl.SQLDataType.BIGINT;
|
||||
import static org.jooq.impl.SQLDataType.BLOB;
|
||||
import static org.jooq.impl.SQLDataType.CHAR;
|
||||
|
||||
@ -1345,4 +1345,8 @@ final class R2DBC {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static final boolean isR2dbc(java.sql.Statement statement) {
|
||||
return statement instanceof R2DBCPreparedStatement;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user