DataBase – Element for the connection string configuration
Attributes:
ConnectionString - (string) - Contains the connection chain to the SQL Server
Example
<DataBase ConnectionString="Data Source=W2K3;Initial Catalog=Northwind;
Integrated Security=True;User ID=;Password=" >
<Table ....>
<IdentityColumn .... />
</Table>
</DataBase>
Contains element: Table
Table – Element for the configuration of the table that we are going to edit
Attributes:
Name - (string) - table’s name that we are going to edit in the database
Example
<Table Name="dbo.Customers">
<IdentityColumn Name="CustomerID" Type="NChar" />
</Table>
Contains element: IdentityColumn
IdentityColumn – Element for the keys to the table
We will identify each one of the columns through which we will recover a unique table register (usually the columns table entity)
Attributes:
Name - (string) - Column name
Type - (string) – Data type (SQL Server)
Incremental - (boolean) - If it is a field with auto-increase
Example:
<Table Name="dbo.Customers">
<IdentityColumn Name="CustomerID" Type="NChar" Incremental="false" />
</Table>
See: ActionDatabaseEditor XML - ActionToolBars
See: ActionDatabaseEditor XML - Fields