Class AbstractTableManager
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Ensures management of database table and table column.
public abstract class AbstractTableManager : ITableManager
- Inheritance
-
objectAbstractTableManager
- Implements
- Derived
- Extension Methods
Fields
mDatabaseCulture
Database culture setting from the web.config.
protected string mDatabaseCulture
Field Value
- string
Properties
ConnectionString
Connection string to use for table management
public string ConnectionString { get; set; }
Property Value
- string
DatabaseCulture
Database culture setting from the web.config.
public virtual string DatabaseCulture { get; }
Property Value
- string
DatabaseName
Database name.
public virtual string DatabaseName { get; }
Property Value
- string
DatabaseServerName
Name of database server.
public virtual string DatabaseServerName { get; }
Property Value
- string
DatabaseServerVersion
Version of database server.
public virtual string DatabaseServerVersion { get; }
Property Value
- string
DatabaseSize
Database size(including log size) in MB.
public virtual string DatabaseSize { get; }
Property Value
- string
DatabaseVersion
Database version
public virtual string DatabaseVersion { get; }
Property Value
- string
Methods
AddTableColumn(string, string, string, bool, string, bool)
Add column to specified table.
public virtual void AddTableColumn(string tableName, string columnName, string columnType, bool allowNull, string defaultValue, bool forceDefaultValue = true)
Parameters
tableName
stringTable name
columnName
stringName of a new column
columnType
stringType of a new column
allowNull
boolAllow NULL values in new column or not
defaultValue
stringDefault value of the column in system (en) culture. Null if no default value is set
forceDefaultValue
boolIndicates if column default value should be set if column doesn't allow NULL values
Exceptions
- ArgumentNullException
tableName
,columnName
orcolumnType
is null.
AlterTableColumn(string, string, string, string, bool, string)
Alter table column with default value.
public virtual void AlterTableColumn(string tableName, string columnName, string newColumnName, string newColumnType, bool newColumnAllowNull, string newColumnDefaultValue)
Parameters
tableName
stringTable name
columnName
stringColumn name
newColumnName
stringNew column name, null if no new column is created
newColumnType
stringNew column type, null if no new column is created
newColumnAllowNull
boolAllow NULL values in new column or not
newColumnDefaultValue
stringColumn default value in system (en) culture
Exceptions
- ArgumentNullException
tableName
,columnName
ornewColumnType
is null.
AlterView(string, string, bool, string)
Alters specified view in database
public virtual void AlterView(string viewName, string selectExpression, bool indexed, string schema)
Parameters
viewName
stringView name to alter
selectExpression
stringSelect expression for the view
indexed
boolIf true, the view is indexed (schema bound)
schema
stringDatabase schema
ChangeDBObjectOwner(string, string)
Changes database object owner.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public virtual void ChangeDBObjectOwner(string dbObject, string newOwner)
Parameters
dbObject
stringDatabase object name
newOwner
stringNew owner name
ColumnExistsInView(string, string)
Checks if column name is unique in given view.
public virtual bool ColumnExistsInView(string viewName, string columnName)
Parameters
viewName
stringName of the view
columnName
stringName of the column to be checked
Returns
- bool
CreateColumnIndexes(string, string, DataSet)
Creates the table indexes.
public virtual void CreateColumnIndexes(string tableName, string columnName, DataSet ds)
Parameters
tableName
stringTable name
columnName
stringColumn name
ds
DataSetDataSet with the indexes information
CreateForeignKey(string, string, string, string, string)
Creates a foreign key between the source table and the referenced table if a foreign key with the same name doesn't already exist.
public virtual void CreateForeignKey(string foreignKeyName, string sourceTableName, string sourceColumnName, string referencedTableName, string referencedColumnName)
Parameters
foreignKeyName
stringForeign key name.
sourceTableName
stringSource table.
sourceColumnName
stringSource column name.
referencedTableName
stringReferenced table name.
referencedColumnName
string
CreateIndex(string, string, bool, IList<(string columnName, bool isAscendingOrder)>)
Creates a non-clustered index for a column(s) if an index with the same name doesn't already exist.
public virtual void CreateIndex(string indexName, string tableName, bool isUnique, IList<(string columnName, bool isAscendingOrder)> columns)
Parameters
indexName
stringIndex name.
tableName
stringTable name.
isUnique
boolIndicates whether index should be unique.
columns
IList<(string columnName, bool isAscendingOrder)>Collection of index columns with order specification.
CreateTable(string, string)
Creates specified table in database.
public virtual void CreateTable(string tableName, string primaryKeyName)
Parameters
tableName
stringTable name to create
primaryKeyName
stringPrimary key of table to create
CreateTable(string, string, bool)
Creates specified table in database.
public virtual void CreateTable(string tableName, string primaryKeyName, bool setIdentity)
Parameters
tableName
stringTable name to create
primaryKeyName
stringPrimary key of table to create
setIdentity
boolIf true, sets identity on primary key column
CreateTransactionScope()
Returns a transaction scope that can be used to maintain database consistency.
protected virtual ITransactionScope CreateTransactionScope()
Returns
CreateView(string, string, bool, string)
Creates specified view in database
public virtual void CreateView(string viewName, string selectExpression, bool indexed, string schema)
Parameters
viewName
stringView name to create
selectExpression
stringSelect expression for the view
indexed
boolIf true, the view is indexed (schema bound)
schema
stringDatabase schema
DropColumnIndexes(string, string)
Drops the column indexes, returns the DataSet of indexes.
public virtual DataSet DropColumnIndexes(string tableName, string columnName)
Parameters
tableName
stringTable name
columnName
stringColumn name
Returns
- DataSet
DropDefaultConstraint(string, string)
Drops the default constraint.
public virtual void DropDefaultConstraint(string tableName, string columnName)
Parameters
tableName
stringTable name
columnName
stringColumn name
DropTable(string)
Drop specified table from database.
public virtual void DropTable(string tableName)
Parameters
tableName
stringTable name to drop
DropTableColumn(string, string)
Remove column from specified table.
public virtual void DropTableColumn(string tableName, string columnName)
Parameters
tableName
stringTable name
columnName
stringName of column to remove
DropView(string)
Drop specified view from database. Returns the schema of the dropped view.
public virtual string DropView(string viewName)
Parameters
viewName
stringView name to drop
Returns
- string
EnsureDefaultValue(bool, string, string)
Add apostrophes around the column default value string according to column type.
protected virtual string EnsureDefaultValue(bool allowNull, string sqlType, string defValue)
Parameters
allowNull
boolIndicates whether NULL values are allowed
sqlType
stringSQL type of the table column
defValue
stringDefault to add apostrophes to
Returns
- string
ExecuteQuery(string, QueryDataParameters, QueryTypeEnum)
Executes query and returns the results in a DataSet.
public virtual DataSet ExecuteQuery(string queryText, QueryDataParameters queryParams, QueryTypeEnum queryType)
Parameters
queryText
stringQuery text
queryParams
QueryDataParametersQuery parameters
queryType
QueryTypeEnumQuery type
Returns
- DataSet
ExecuteScalar(string, QueryDataParameters, QueryTypeEnum)
Executes query and returns the value from the first column of the first row in the returned result set.
public virtual object ExecuteScalar(string queryText, QueryDataParameters queryParams, QueryTypeEnum queryType)
Parameters
queryText
stringQuery text
queryParams
QueryDataParametersQuery parameters
queryType
QueryTypeEnumQuery type
Returns
- object
GetColumnIndexes(string, string)
Returns the DataSet of column indexes.
public virtual DataSet GetColumnIndexes(string tableName, string columnName)
Parameters
tableName
stringTable name
columnName
stringColumn name
Returns
- DataSet
GetColumnInformation(string, string)
Returns DataSet with specified table column information retrieved from database information schema. Returns columns ColumnName, DataType, DataSize, DataPrecision, Nullable, DefaultValue.
public virtual DataSet GetColumnInformation(string tableName, string columnName)
Parameters
tableName
stringDatabase table name
columnName
stringDatabase table column name
Returns
- DataSet
Remarks
If columnName
is not specified data for all table columns are returned.
GetConnection()
Gets the connection for the table management
protected virtual IDataConnection GetConnection()
Returns
GetConstraintName(string, string)
Returns constraint's name truncated to 128 chars (128 chars is limit of database column name).
[Obsolete("Method is obsolete and will be removed in the next version.")]
[ObsoleteSince(27, 0)]
public static string GetConstraintName(string tableName, string columnName)
Parameters
tableName
stringTable name
columnName
stringColumn name
Returns
- string
GetDatabaseInfo()
Gets size related information about the database.
protected virtual DataSet GetDatabaseInfo()
Returns
- DataSet
DataSet with 2 tables containing related data
GetDatabaseSize(string)
Gets database size (including log size) or N/A string if the size cannot be retrieved
protected virtual string GetDatabaseSize(string databaseCulture)
Parameters
databaseCulture
string
Returns
- string
GetDatabaseVersion()
Gets the database version
protected virtual string GetDatabaseVersion()
Returns
- string
GetPKConstraintName(string)
Returns the name of the primary key constraint.
public virtual string GetPKConstraintName(string tableName)
Parameters
tableName
stringName of the table
Returns
- string
GetPrimaryKeyColumns(string)
Returns list of column names which represent primary keys of the specified database table. Returns empty list if primary keys are not found.
public virtual List<string> GetPrimaryKeyColumns(string tableName)
Parameters
tableName
stringDatabase table name
Returns
- List<string>
GetTableDependencies(string)
Gets list of object names which have foreign key constraint dependency.
[Obsolete("Method is deprecated and will be removed in the next version.")]
[ObsoleteSince(27, 0)]
public virtual List<string> GetTableDependencies(string tableName)
Parameters
tableName
string
Returns
- List<string>
GetTablePKName(string)
Returns name of the primary key. If more columns in PK, names are separated by semicolon ";".
public virtual string GetTablePKName(string tableName)
Parameters
tableName
stringName of the table to get PK column(s) from.
Returns
- string
GetValueString(object)
Returns the value string using the database culture. Does not include apostrophes for types that need them
public virtual string GetValueString(object value)
Parameters
value
objectValue to convert
Returns
- string
GetXmlSchema(string)
Returns XML schema for specified table.
public virtual string GetXmlSchema(string tableName)
Parameters
tableName
stringName of a table to get xml schema for
Returns
- string
RecreatePKConstraint(string, string[])
Drops the current primary key constraint and creates new from given columns.
public virtual void RecreatePKConstraint(string tableName, string[] primaryKeyColumns)
Parameters
tableName
stringName of the table
primaryKeyColumns
string[]List of columns which should be part of primary key
RefreshView(string)
Refreshes specified view in database.
public virtual void RefreshView(string viewName)
Parameters
viewName
stringView name to refresh
RenameColumn(string, string, string)
Changes name of the column.
protected virtual bool RenameColumn(string tableName, string columnName, string newColumnName)
Parameters
tableName
stringName of the table
columnName
stringCurrent name of the column
newColumnName
stringNew name of the column
Returns
- bool
RenameTable(string, string)
Changes name of the table with original name according to the new name.
public virtual void RenameTable(string oldTableName, string newTableName)
Parameters
oldTableName
stringName of the table to rename
newTableName
stringNew name of the table
TableExists(string)
Determines whether specified DB table exists or not.
public virtual bool TableExists(string tableName)
Parameters
tableName
stringTable name to check
Returns
- bool
ViewExists(string)
Determines whether specified DB view exists or not.
public virtual bool ViewExists(string viewName)
Parameters
viewName
stringView name to check
Returns
- bool
ViewExists(string, out string)
Determines whether specified DB view exists or not.
public virtual bool ViewExists(string viewName, out string schema)
Parameters
viewName
stringView name to check
schema
stringReturns the view schema
Returns
- bool