fix columnType error

This commit is contained in:
SwallowGG
2024-07-11 13:56:32 +08:00
parent 3961610e50
commit 493f934a2c
23 changed files with 119 additions and 78 deletions

View File

@ -36,7 +36,7 @@ public class OracleValueProcessor extends DefaultValueProcessor {
@Override
public String getJdbcValueString(JDBCDataValue dataValue) {
public String getJdbcSqlValueString(JDBCDataValue dataValue) {
if (OracleColumnTypeEnum.LONG_RAW.getColumnType().getTypeName().equalsIgnoreCase(dataValue.getType())) {
return convertJDBCValueStrByType(dataValue);
}