mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
- 修复 Oracle 插入 LONG RAW 类型的问题;
This commit is contained in:
@ -461,6 +461,12 @@ and not exists(select 1 from all_constraints where index_name = a.index_name and
|
||||
else if (sqlType.StartsWith("BLOB"))
|
||||
{
|
||||
}
|
||||
else if (sqlType.StartsWith("RAW"))
|
||||
{
|
||||
}
|
||||
else if (sqlType.StartsWith("LONG RAW"))
|
||||
{
|
||||
}
|
||||
else if (sqlType == "REAL" || sqlType == "DOUBLE" || sqlType == "FLOAT")
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user