Interface ITableManager
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Ensures management of database table and table column.
public interface ITableManager
- Extension Methods
Properties
ConnectionString
Connection string name
string ConnectionString { get; set; }
Property Value
- string
DatabaseCulture
Database culture setting from the web.config.
string DatabaseCulture { get; }
Property Value
- string
DatabaseName
Gets database name.
string DatabaseName { get; }
Property Value
- string
DatabaseServerName
Gets database server name.
string DatabaseServerName { get; }
Property Value
- string
DatabaseServerVersion
Gets database server version.
string DatabaseServerVersion { get; }
Property Value
- string
DatabaseSize
Gets database size(including log size).
string DatabaseSize { get; }
Property Value
- string
DatabaseVersion
Gets database version
string DatabaseVersion { get; }
Property Value
- string
Methods
AddTableColumn(string, string, string, bool, string, bool)
Add column to specified table.
void AddTableColumn(string tableName, string columnName, string columnType, bool allowNull, string defaultValue, bool forceDefaultValue)
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
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.
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.
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.
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.
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 with specified primary key column with or without identity.
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
CreateView(string, string, bool, string)
Creates specified view in database for given data class.
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
DropTable(string)
Drop specified table from database.
void DropTable(string tableName)
Parameters
tableName
stringTable name to drop
DropTableColumn(string, string)
Remove column from specified table.
void DropTableColumn(string tableName, string columnName)
Parameters
tableName
stringTable name
columnName
stringName of column to remove
DropView(string)
Drop specified view from database.
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.
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 specfied table column information retrieved from database information schema. Returns columns ColumnName, DataType, DataSize, DataPrecision, Nullable, DefaultValue
DataSet GetColumnInformation(string tableName, string columnName)
Parameters
tableName
stringDatabase table name
columnName
stringDatabase table column name
Returns
- DataSet
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.
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 ";".
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.
string GetValueString(object value)
Parameters
value
objectValue to convert
Returns
- string
GetXmlSchema(string)
Returns XML schema for specified table.
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.
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.
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.
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.
bool TableExists(string tableName)
Parameters
tableName
stringTable name to check
Returns
- bool