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:
@ -106,7 +106,7 @@ namespace FreeSql.Oracle
|
||||
return OleDbType.VarBinary;
|
||||
case "long raw":
|
||||
_dicDbToCs.TryAdd(dbfull, _dicDbToCs["blob"]);
|
||||
return OleDbType.VarBinary;
|
||||
return OleDbType.LongVarBinary;
|
||||
case "binary_float":
|
||||
_dicDbToCs.TryAdd(dbfull, _dicDbToCs["float(63)"]);
|
||||
return OleDbType.Single;
|
||||
|
Reference in New Issue
Block a user