mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Oracle proc clob 4000+ bug
This commit is contained in:
parent
e9d25bfedf
commit
4324f30728
@ -10,6 +10,7 @@ namespace SqlSugar
|
||||
public class SugarParameter : DbParameter
|
||||
{
|
||||
public bool IsRefCursor { get; set; }
|
||||
public bool IsClob { get; set; }
|
||||
public SugarParameter(string name, object value)
|
||||
{
|
||||
this.Value = value;
|
||||
|
@ -134,6 +134,10 @@ namespace SqlSugar
|
||||
{
|
||||
sqlParameter.OracleDbType = OracleDbType.RefCursor;
|
||||
}
|
||||
if (parameter.IsClob)
|
||||
{
|
||||
sqlParameter.OracleDbType = OracleDbType.Clob;
|
||||
}
|
||||
if (sqlParameter.DbType == System.Data.DbType.Guid)
|
||||
{
|
||||
sqlParameter.DbType = System.Data.DbType.String;
|
||||
|
Loading…
Reference in New Issue
Block a user