Mirror

How to connect or disconnect all tables in a datamodule (Views: 706)


Problem/Question/Abstract:

How to connect or disconnect all tables in a datamodule

Answer:

This should work:

for i := 0 to pred(components.count) do
  if (components[i] is TDataSet) then
    (components[i] as TDataSet).Active := not (components[i] as TDataSet).Active;

<< Back to main page