You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

54 lines
2.0 KiB

namespace SqlSugar
{
public abstract partial class DbMaintenanceProvider : IDbMaintenance
{
#region Context
private ISqlBuilder _SqlBuilder;
public SqlSugarClient Context { get; set; }
public ISqlBuilder SqlBuilder
{
get
{
if (_SqlBuilder == null)
{
_SqlBuilder = InstanceFactory.GetSqlbuilder(this.Context.CurrentConnectionConfig);
_SqlBuilder.Context = this.Context;
}
return _SqlBuilder;
}
}
#endregion
#region DML
protected abstract string GetViewInfoListSql { get; }
protected abstract string GetTableInfoListSql { get; }
protected abstract string GetColumnInfosByTableNameSql { get; }
#endregion
#region DDL
protected abstract string AddColumnToTableSql { get; }
protected abstract string AlterColumnToTableSql { get; }
protected abstract string BackupDataBaseSql { get; }
protected abstract string CreateTableSql { get; }
protected abstract string CreateTableColumn { get; }
protected abstract string BackupTableSql { get; }
protected abstract string TruncateTableSql { get; }
protected abstract string DropTableSql { get; }
protected abstract string DropColumnToTableSql { get; }
protected abstract string DropConstraintSql { get; }
protected abstract string AddPrimaryKeySql { get; }
protected abstract string RenameColumnSql { get; }
#endregion
#region Check
protected abstract string CheckSystemTablePermissionsSql { get; }
#endregion
#region Scattered
protected abstract string CreateTableNull { get; }
protected abstract string CreateTableNotNull { get; }
protected abstract string CreateTablePirmaryKey { get; }
protected abstract string CreateTableIdentity { get; }
#endregion
}
}