SQLSelectIntoAddColumn Method (String, OleDbType, String, OleDbType) |
Adds a column (to be copied) to the class where the source and destination names and/or
data types do not match.
If both match, use
AddColumn(String, OleDbType) instead.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public void AddColumn(
string sourceColumn,
OleDbType sourceType,
string destinationColumn,
OleDbType destinationType
)
Public Sub AddColumn (
sourceColumn As String,
sourceType As OleDbType,
destinationColumn As String,
destinationType As OleDbType
)
Parameters
- sourceColumn
- Type: SystemString
The name of the column from which to select. - sourceType
- Type: System.Data.OleDbOleDbType
The datatype of the source column. - destinationColumn
- Type: SystemString
The name of the column into which to insert. - destinationType
- Type: System.Data.OleDbOleDbType
The datatype of the destination column.
See Also