This commit is contained in:
sunkaixuan
2017-05-28 18:28:20 +08:00
parent e730700c29
commit 6c590fac6b

View File

@@ -8,15 +8,23 @@ using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
///<summary>
/// ** descriptionActiveX Data Objects
/// ** authorsunkaixuan
/// ** date2017/1/2
/// ** email:610262374@qq.com
/// </summary>
public abstract partial class AdoProvider : AdoAccessory, IAdo
{
#region Constructor
public AdoProvider()
{
this.IsEnableLogEvent = false;
this.CommandType = CommandType.Text;
this.IsClearParameters = true;
this.CommandTimeOut = 30000;
}
}
#endregion
#region Properties
public virtual string SqlParameterKeyWord { get { return "@"; } }