Update kdbndp

This commit is contained in:
sunkaixuan 2023-04-23 17:08:29 +08:00
parent 7d86646184
commit 124ac8a9d2

View File

@ -73,10 +73,10 @@ namespace SqlSugar
KdbndpCommand sqlCommand = new KdbndpCommand(sql, (KdbndpConnection)this.Connection);
sqlCommand.CommandType = this.CommandType;
sqlCommand.CommandTimeout = this.CommandTimeOut;
//if (sqlCommand.CommandType == CommandType.StoredProcedure)
//{
// sqlCommand.DbModeType = DbMode.Oracle;
//}
if (sqlCommand.CommandType == CommandType.StoredProcedure)
{
sqlCommand.DbModeType = DbMode.Oracle;
}
if (this.Transaction != null)
{
sqlCommand.Transaction = (KdbndpTransaction)this.Transaction;