dotConnect for BigCommerce Documentation
Devart.Common Namespace / DbLoader Class / CreateColumns Method

In This Topic
CreateColumns Method (DbLoader)
In This Topic
Retrieves table columns information from the table specified in the TableName property and populates columns collection.
Syntax
'Declaration
 
Public MustOverride Sub CreateColumns() 
 
Remarks

If Columns property consists of some columns they will be deleted before calling CreateColumns method. TableName property must be set before calling this method.

CreateColumns retrieves all columns from the table. It means that when inserting the data, SQL INSERT statement is generated for all of the columns, regardless of how many you have assigned with SetValue method. The columns you have omitted are considered to be of NULL value. If you want to generate the statements for chosen columns only, you have to manually edit the collection.

See Also