Class TableManager
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Ensures management of database table and table column.
public class TableManager
- Inheritance
-
objectTableManager
- Extension Methods
Constructors
TableManager(string)
Constructor
public TableManager(string connectionStringName)
Parameters
connectionStringName
stringConnection string name
Fields
USE_INDEXED_VIEWS
If true, the indexed views are used and generated within the system
public static bool USE_INDEXED_VIEWS
Field Value
- bool
Properties
ConnectionString
Current connection string for the table management
public string ConnectionString { get; protected set; }
Property Value
- string
DatabaseName
Gets database name.
public string DatabaseName { get; }
Property Value
- string
DatabaseServerName
Gets database server name.
public string DatabaseServerName { get; }
Property Value
- string
DatabaseServerVersion
Gets database server version.
public string DatabaseServerVersion { get; }
Property Value
- string
DatabaseSize
Gets database size(including log size) in MB.
public string DatabaseSize { get; }
Property Value
- string
TableManagerObject
Table manager object
protected ITableManager TableManagerObject { get; }
Property Value
UpdateSystemFields
Determines whether system fields should be updated when updating table by schema. By default updates only non-system fields.
public bool UpdateSystemFields { get; set; }
Property Value
- bool
Methods
AddTableColumn(string, string, string, bool, string, bool)
Add column to specified table.
public 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
AlterTableColumn(string, string, string, string, bool, string)
Rename, retype or allow/not allow NULL values in column
public void AlterTableColumn(string tableName, string columnName, string newColumnName, string newColumnType, bool newColumnAllowNull, string newColumnDefaultValue)
Parameters
tableName
stringTable name
columnName
stringName of an old column
newColumnName
stringName of a new column
newColumnType
stringType of a new column
newColumnAllowNull
boolAllow NULL values in new column or not
newColumnDefaultValue
stringDefault value of a new column in system (en) culture
CreateColumnIndexes(string, string, DataSet)
Creates the table indexes.
public 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 void CreateForeignKey(string foreignKeyName, string sourceTableName, string sourceColumnName, string referencedTableName, string referencedColumn)
Parameters
foreignKeyName
stringForeign key name.
sourceTableName
stringSource table.
sourceColumnName
stringSource column name.
referencedTableName
stringReferenced table name.
referencedColumn
stringReferenced column name.
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 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, bool)
Creates specified table in database. Allows specify if identity will be set on primary key column.
public void CreateTable(string tableName, string primaryKeyName, bool setIdentity = true)
Parameters
tableName
stringTable name to create
primaryKeyName
stringPrimary key of table to create
setIdentity
boolIf true, sets identity on primary key column
CreateView(string, string, bool, string)
Creates specified view in database
public void CreateView(string viewName, string selectExpression, bool indexed = false, string schema = null)
Parameters
viewName
stringView name to create
selectExpression
stringSelect expression for the view
indexed
boolIf true, the view is indexed (schema bound)
schema
stringSchema of the indexed view
DropTable(string)
Drop specified table from database.
public void DropTable(string tableName)
Parameters
tableName
stringTable name to drop
DropTableColumn(string, string)
Remove column from specified table.
public 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 string DropView(string viewName)
Parameters
viewName
stringView name to drop
Returns
- string
ExecuteQuery(string, QueryDataParameters, QueryTypeEnum)
Executes query and returns the results in a DataSet.
public DataSet ExecuteQuery(string queryText, QueryDataParameters queryParams, QueryTypeEnum queryType)
Parameters
queryText
stringQuery text
queryParams
QueryDataParametersQuery parameters
queryType
QueryTypeEnumQuery type
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 DataSet GetColumnInformation(string tableName, string columnName = null)
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.
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 List<string> GetPrimaryKeyColumns(string tableName)
Parameters
tableName
stringDatabase table name
Returns
- List<string>
GetTablePKName(string)
Returns name of the primary key. If more columns in PK, names are separated by semicolon ";".
public string GetTablePKName(string tableName)
Parameters
tableName
stringName of the table to get PK column(s) from.
Returns
- string
GetUniqueTableName(string)
Returns unique table name (automatically generated table name that not yet exist in the database).
public string GetUniqueTableName(string originalTableName)
Parameters
originalTableName
stringOriginal table name
Returns
- string
GetValueString(object)
Returns the float string using the database culture.
public static string GetValueString(object value)
Parameters
value
objectValue to convert
Returns
- string
GetXmlSchema(string)
Returns XML schema for specified table.
public string GetXmlSchema(string tableName)
Parameters
tableName
stringName of a table to get xml schema for
Returns
- string
RecreatePKConstraint(string, string[])
Drops the current PK constraint and creates new from given columns.
public void RecreatePKConstraint(string tableName, string[] primaryKeyColumns)
Parameters
tableName
stringName of the table
primaryKeyColumns
string[]List of columns which should be part of primary key
RefreshSystemViews(string)
Refreshes all database views which should contain all columns of the specified system table (e.g. cms_user). Call this method after the column of that system table is added or removed.
public void RefreshSystemViews(string tableName)
Parameters
tableName
stringSystem table name
RefreshView(string)
Refreshes specified view in database.
public void RefreshView(string viewName)
Parameters
viewName
stringView name to refresh
RenameTable(string, string)
Changes name of the table with original name according to the new name.
public void RenameTable(string oldTableName, string newTableName)
Parameters
oldTableName
stringName of the table to rename
newTableName
stringNew name of the table
SelectFieldNode(XmlNode, string, string)
Selects single field node with the specified attribute value.
public static XmlNode SelectFieldNode(XmlNode formNode, string attributeName, string attributeValue)
Parameters
formNode
XmlNodeXml node with field nodes representing table columns
attributeName
stringAttribute name of the field node to be selected
attributeValue
stringAttribute value of the field node to be selected
Returns
- XmlNode
TableExists(string)
Determines whether specified DB table exists or not.
public bool TableExists(string tableName)
Parameters
tableName
stringTable name to check
Returns
- bool