SetAutoBindCol Function

Action

Sets the Silk Performer autobindcol setting.

Include file

Kernel.bdh

Syntax

SetAutoBindCol( in bAutoBind: boolean );
Parameter Description
bAutoBind
  • true. Automatic binding for columns in a SELECT clause of a SQL statement

  • false. No automatic binding for columns in a SELECT clause

Example

dcltrans
  transaction TSetAutoBindCol
  begin
    SetAutoBindCol(true);
    write("automatic binding for columns set"); writeln;
  end TSetAutoBindCol;

Output

automatic binding for columns set