InsertColumn Method
Esta característica se quitará en una versión futura de Microsoft SQL Server. Evite utilizar esta característica en nuevos trabajos de desarrollo y tenga previsto modificar las aplicaciones que actualmente la utilizan.
The InsertColumn method adds a column to the Columns collection of a Table object at the position indicated.
Sintaxis
object
.InsertColumn(
Column
,
InsertBeforeColumn
)
Parts
- object
Expression that evaluates to an object in the Applies To list.
- Column
Expression that evaluates to a Column object.
- InsertBeforeColumn
String that names an existing Column object in the Columns collection of a Table object.
Prototype (C/C++)
HRESULT InsertColumn(
LPSQLDMOCOLUMN pNewColumn,
SQLDMO_LPCSTR szBeforeColumn);
Notas
Use the InsertColumn method when the ordinal position of a column must be maintained.
[!NOTA] Columns in existing Microsoft SQL Server tables have fixed ordinal location. You cannot use the InsertColumn method when the Table object references an existing SQL Server table. Use InsertColumn only when the Table object is used to create a SQL Server table.