mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-01 18:57:05 +08:00
Update 人大金仓
This commit is contained in:
parent
3b0731ddf1
commit
decb7e63e0
@ -7,6 +7,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Kdbndp;
|
||||
using KdbndpTypes;
|
||||
using Oracle.ManagedDataAccess.Client;
|
||||
|
||||
namespace SqlSugar
|
||||
{
|
||||
@ -141,6 +142,11 @@ namespace SqlSugar
|
||||
this.OutputParameters.RemoveAll(it => it.ParameterName == sqlParameter.ParameterName);
|
||||
this.OutputParameters.Add(sqlParameter);
|
||||
}
|
||||
if (parameter.IsRefCursor)
|
||||
{
|
||||
sqlParameter.KdbndpDbType = KdbndpDbType.Refcursor;
|
||||
sqlParameter.Direction = ParameterDirection.Output;
|
||||
}
|
||||
++index;
|
||||
}
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user