Skip to content

DisableAllColumnFetching - cTableColumnFetchHelper

Disables the fetching of all columns in all tables.

Type: Procedure

Syntax

Procedure DisableAllColumnFetching

Call Example

Send DisableAllColumnFetching

Description

This disables the fetching of all columns in all tables. After you've set this you will always want to explicitly select some columns in tables for fetching.

Send DisableAllColumnFetching of oFetchHelper
Send PrepareColumns // just enable the columns you want
Send DoSomeProcess // run the process
Send EnableAllColumnFetching of oFetchHelper

When pbUseAllTables is true, all open tables are affected by this operation. When this property is false, only the tables added to this object's list are affected.

This message should be sent after files are opened.