Table of Contents

Class TableManager

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Ensures management of database table and table column.

public class TableManager
Inheritance
object
TableManager
Extension Methods

Constructors

TableManager(string)

Constructor

public TableManager(string connectionStringName)

Parameters

connectionStringName string

Connection 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

ITableManager

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 string

Table name

columnName string

Name of a new column

columnType string

Type of a new column

allowNull bool

Allow NULL values in new column or not

defaultValue string

Default value of the column in system (en) culture. Null if no default value is set

forceDefaultValue bool

Indicates 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 string

Table name

columnName string

Name of an old column

newColumnName string

Name of a new column

newColumnType string

Type of a new column

newColumnAllowNull bool

Allow NULL values in new column or not

newColumnDefaultValue string

Default 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 string

Table name

columnName string

Column name

ds DataSet

DataSet 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 string

Foreign key name.

sourceTableName string

Source table.

sourceColumnName string

Source column name.

referencedTableName string

Referenced table name.

referencedColumn string

Referenced 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 string

Index name.

tableName string

Table name.

isUnique bool

Indicates 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 string

Table name to create

primaryKeyName string

Primary key of table to create

setIdentity bool

If 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 string

View name to create

selectExpression string

Select expression for the view

indexed bool

If true, the view is indexed (schema bound)

schema string

Schema of the indexed view

DropTable(string)

Drop specified table from database.

public void DropTable(string tableName)

Parameters

tableName string

Table name to drop

DropTableColumn(string, string)

Remove column from specified table.

public void DropTableColumn(string tableName, string columnName)

Parameters

tableName string

Table name

columnName string

Name 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 string

View 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 string

Query text

queryParams QueryDataParameters

Query parameters

queryType QueryTypeEnum

Query 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 string

Database table name

columnName string

Database 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 string

Database 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 string

Name 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 string

Original table name

Returns

string

GetValueString(object)

Returns the float string using the database culture.

public static string GetValueString(object value)

Parameters

value object

Value to convert

Returns

string

GetXmlSchema(string)

Returns XML schema for specified table.

public string GetXmlSchema(string tableName)

Parameters

tableName string

Name 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 string

Name 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 string

System table name

RefreshView(string)

Refreshes specified view in database.

public void RefreshView(string viewName)

Parameters

viewName string

View 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 string

Name of the table to rename

newTableName string

New 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 XmlNode

Xml node with field nodes representing table columns

attributeName string

Attribute name of the field node to be selected

attributeValue string

Attribute 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 string

Table name to check

Returns

bool