[]
Add new columns to an existing DataEngine table.
public abstract long AddNewColumns(string tableName, long count = 0)
Public MustOverride Function AddNewColumns(tableName As String, Optional count As Long = 0) As Long
| Type | Name | Description |
|---|---|---|
| string | tableName | The name of the DataEngine table. |
| long | count | Optional number of rows to import. If count is 0 (default), import all rows. |
| Type | Description |
|---|---|
| long |
This method throws an exception if the specified columns already exist.
Add new columns to an existing DataEngine table.
public static long AddNewColumns(Workspace workspace, IDataReader reader, string tableName, long count = 0)
Public Shared Function AddNewColumns(workspace As Workspace, reader As IDataReader, tableName As String, Optional count As Long = 0) As Long
| Type | Name | Description |
|---|---|---|
| Workspace | workspace | Workspace containing the DataEngine table. |
| IDataReader | reader | Reader providing the data for the new columns. |
| string | tableName | The name of the DataEngine table. |
| long | count | Optional number of rows to import. If count is 0 (default), import all rows. |
| Type | Description |
|---|---|
| long |
This method throws an exception if the specified columns already exist.