- 增加 Oracle CLOB/NCLOB 大文本类型读写支持;#259

This commit is contained in:
28810
2020-03-31 05:56:49 +08:00
parent cdfe48ac03
commit 7795296328
4 changed files with 74 additions and 0 deletions

View File

@ -441,6 +441,12 @@ and not exists(select 1 from all_constraints where constraint_name = a.index_nam
else if (sqlType.StartsWith("BLOB"))
{
}
else if (sqlType.StartsWith("CLOB"))
{
}
else if (sqlType.StartsWith("NCLOB"))
{
}
else if (char_used.ToLower() == "c")
sqlType += sqlType.StartsWith("N") ? $"({data_length / 2})" : $"({data_length / 4} CHAR)";
else if (char_used.ToLower() == "b")