Parameters
- name
- The name of the column.
- dbType
- One of the OracleDbType values.
- size
- Maximum size of column data (only for strings).
public void CreateMyLoaderColumn(OracleLoader loader) { ... OracleLoaderColumn column = new OracleLoaderColumn("dname", OracleDbType.VarChar, 25); loader.Add(column); ... }
Public Sub CreateMyLoaderColumn(loader as OracleLoader) ... Dim column as OracleLoaderColumn = new OracleLoaderColumn("dname", OracleDbType.VarChar, 25) loader.Add(column) ... End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2