Link to home
Start Free TrialLog in
Avatar of ajtsoukalas
ajtsoukalasFlag for United States of America

asked on

Set mastersource at runtime

I have a mySQL database with a number of tables.  I would like to set the mastersource with one of three other tables depending on a user entry.

New NewDS
Past PastDS
Current CurrentDS

I would like to do it in such a way that I don't have to modify the code if I add a table to database.

I am leaning toward DAC for mySql and the database component has a gettablenames which will give me the list of tables by name.
How would I assign the mastersource for each table in the stringlist?

AJ
Avatar of atul_parmar
atul_parmar
Flag of India image

Sorry but I didn't get your question. are you talking about setting the master-details relationship at runtime?
If it is so then
DetailTable.Close;
DetailTable.MasterSource := NewDS;// could be PastDS, CurrentDS etc.
DetailTable.MasterFields := 'FieldMappings';
DetailTable.Open;
One more thing to note here is that the relative field in DetailTable must be set as an active index before you open the details table.
e.g.
NewDS->ID = DetailTable->CustomerID then

DetailTable.IndexFieldNames := 'CustomerID';
DetailTable.MasterFields := 'ID';
Avatar of ajtsoukalas

ASKER

atul parmar

Yes, but I would like to do it based on the stringlist provided by the database component

database.gettablenames('', tablesList);
for index := 1 to tablesList.Count-1 do
   begin
   datamodule.tablestring[index].Close;
   datamodule.tablestring[index].mastersource...
   datamodule.tablestring[index].MasterFields...
   datamodule.tablestring[index].Open;
   end;

What would be the specific code for  datamodule.tablestring[index].?

   
for index := 0 to tablesList.Count-1 do
So tablesList will have the list of master tables and then you want to set the mastersource of details table to the one of that tablelist. Right?

But your skeleton code is confusing. (If the tablesList will have one entry then it's fine but looping through it and assigning the values of tablesList as mastersource of details table serves no purpose)

Anyway, I guess that tablesList will number of table names and based on user selection you want to assign the corresponding mastersource to details table.

Then you will have one MasterTable and one DetailTable component.
var
  SelectedTableName : String;
begin
  SelectedTableName := tablesList[i]; //selection made based on user input
  //
  MasterTable.Close;
  MasterTable.TableName := SelectedTableName;
  MasterTable.Open;
  DetailTable.Close;
  DetailTable.MasterSource := MasterDS;
  DetailTable.IndexFieldNames := ''; // set index field name
  DetailTable.MasterFields := ''; // set master field
  DetailTable.Open;
end
With your code

  // Following can be set at design time
  MasterDS.Dataset := datamodule.Mastertable;
  datamodule.DetailTable.MasterSource := MasterDS;
  datamodule.DetailTable.IndexFieldNames := ''; // set index field name
  datamodule.DetailTable.MasterFields := ''; //

database.gettablenames('', tablesList);

//
   for index := 1 to tablesList.Count-1 do
   begin
      // select appropriate table to master.
      e.g. if tablesList[i] matches user selection then
         SelectedTableName := tablesList[i];
   end;

      datamodule.DetailTable.Close;
      datamodule.MasterTable.Close;
      datamodule.MasterTable.TableName := SelectedTableName;
      datamodule.MasterTable.Open;
      datamodule.DetailTable.Open;
Please bear with me as I have not described this as I meant to

There are 3 driver tables
New
Current
Past

Depending on the user request I need to change all of the mastersources of the detail tables to the selected datasource.  

I don't know how to substitute the information returned by the list to do the assignment.

if my datamodule is pkData and the list contains
empphones
empaddress
emprates

and the user selects New

pkData.HrKDatabase.GetTableNames('', tablesList);
for Index := 0 to tablesList.Count-1 do
   begin
   if userselect = 'New' then
       pkdata.'what would go here'.mastersource := NewDS
   else
   if userselect = 'Past' then
       pkdata.'what would go here'.mastersource := PastDS
   else
       pkdata.'what would go here'.mastersource := CurrentDS;
   end;
'what would go here' -> the name of the detail table. what you can not assign using tablesList. However you can go though all the tables of datamodule and check for the mastersource. if it is assigned then change it to new one.

e.g.
var
  x : integer;
begin
  for x := 0 to datamodule.ComponentCount - 1 do
  begin
    if datamodule.Components[0] is TTable then
    begin
      if assigned(TTable(datamodule.Components[x]).mastersource) then
        TTable(datamodule.Components[x]).mastersource := NewDS;
    end
  end
end;

The above snippet will go inside your for loop
ASKER CERTIFIED SOLUTION
Avatar of atul_parmar
atul_parmar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks
I understand now.

Your code is more involved then being able to substitute the list names but it will work just as well.

Thanks,

AJ


I hope you might have corrected the line from
if datamodule.Components[0] is TTable then
to
if datamodule.Components[x] is TTable then
Yes I did, thanks

AJ