Browse Source

Optimization exception

SqlSugar5
sunkaixuan 2 years ago
parent
commit
7ba6b89119
  1. 12
      Src/Asp.Net/SqlSugar/Abstract/AdoProvider/AdoProvider.cs

12
Src/Asp.Net/SqlSugar/Abstract/AdoProvider/AdoProvider.cs

@ -433,7 +433,7 @@ namespace SqlSugar
CommandType = CommandType.Text; CommandType = CommandType.Text;
if (ErrorEvent != null) if (ErrorEvent != null)
ExecuteErrorEvent(sql, parameters, ex); ExecuteErrorEvent(sql, parameters, ex);
throw ex; throw;
} }
} }
public virtual DataSet GetDataSetAll(string sql, params SugarParameter[] parameters) public virtual DataSet GetDataSetAll(string sql, params SugarParameter[] parameters)
@ -466,7 +466,7 @@ namespace SqlSugar
CommandType = CommandType.Text; CommandType = CommandType.Text;
if (ErrorEvent != null) if (ErrorEvent != null)
ExecuteErrorEvent(sql, parameters, ex); ExecuteErrorEvent(sql, parameters, ex);
throw ex; throw;
} }
finally finally
{ {
@ -502,7 +502,7 @@ namespace SqlSugar
CommandType = CommandType.Text; CommandType = CommandType.Text;
if (ErrorEvent != null) if (ErrorEvent != null)
ExecuteErrorEvent(sql, parameters, ex); ExecuteErrorEvent(sql, parameters, ex);
throw ex; throw;
} }
finally finally
{ {
@ -543,7 +543,7 @@ namespace SqlSugar
CommandType = CommandType.Text; CommandType = CommandType.Text;
if (ErrorEvent != null) if (ErrorEvent != null)
ExecuteErrorEvent(sql, parameters, ex); ExecuteErrorEvent(sql, parameters, ex);
throw ex; throw;
} }
finally finally
{ {
@ -588,7 +588,7 @@ namespace SqlSugar
CommandType = CommandType.Text; CommandType = CommandType.Text;
if (ErrorEvent != null) if (ErrorEvent != null)
ExecuteErrorEvent(sql, parameters, ex); ExecuteErrorEvent(sql, parameters, ex);
throw ex; throw;
} }
} }
public virtual async Task<object> GetScalarAsync(string sql, params SugarParameter[] parameters) public virtual async Task<object> GetScalarAsync(string sql, params SugarParameter[] parameters)
@ -624,7 +624,7 @@ namespace SqlSugar
CommandType = CommandType.Text; CommandType = CommandType.Text;
if (ErrorEvent != null) if (ErrorEvent != null)
ExecuteErrorEvent(sql, parameters, ex); ExecuteErrorEvent(sql, parameters, ex);
throw ex; throw;
} }
finally finally
{ {

Loading…
Cancel
Save