ITableManagerCreateTable Method (String, String, Boolean) |
Creates specified table in database with specified primary key column with or without identity.
Namespace: CMS.DataEngineAssembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 12.0.0
Syntax void CreateTable(
string tableName,
string primaryKeyName,
bool setIdentity
)
Parameters
- tableName
- Type: SystemString
Table name to create - primaryKeyName
- Type: SystemString
Primary key of table to create - setIdentity
- Type: SystemBoolean
If true, sets identity on primary key column
See Also