Scenario |
Type |
Detail |
Create table |
Simple |
Table is object with information about: - table name - columns of table - in which database table is
Create table consist of this steps: 1. create Table(name, which database) object. Which database is database connection serial number 2. call Table.CreateTable(ColumnsInfo). This method may failed
It Program want to create temporary table then table name may determine FindNewTableName() method. This method is called before CreateTable(...) |
|