Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Multiple to Multiple relationship SQL problem
Message
From
19/02/2004 14:03:39
 
 
To
19/02/2004 09:44:43
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00878700
Message ID:
00878864
Views:
13
See previous message sent

Getting rid of the sub select seems to have solved the problem. I do not know why but sometimes having it work is good enough.

>Hi Don,
>
>I may be misreading your select statement, but as far as I can see you can simplify it a lot:
>
>select childtable.* from childTable, CrossRefTable, MasterTable where childTable.ChildTable_id = CrossRefTable.MasterTable_id;
> and CrossRefTable.MasterTable_id = MasterTable.MasterTable_id into cursor curSelected
>
>
>
>>I have a multiple to multiple relationship which means that I have a third cross reference table, made up of the keys (id's) of both tables involved in the relationship.
>>
>>All three tables are table buffered.
>>
>>I have made a list control to display the multiple child records of the current master. It finds the current child records by running a SQL statement like :
>>
>>select * from ChildTable where ChildTable_id in (select ChildTable_id from CrossRefTable where CrossRefTable.MasterTable_id = MasterTable.MasterTable_id) into cursor curSelected
>>
>>I have made a look up screen to be able to pick the multiple child records. It adds the new records into the buffered CrossRefTable.
>>
>>When the SQL runs it appears to run against the 'disk' copy of the CrossRefTable, not the buffered version. I have confirmed this by not buffering the CrossRefTable. In this case everything works as required.
>>
>>Of course I want to buffer the cross table data so the changes can be reverted if required.
>>
>>Can I force the SQL to run against the 'buffered' data. Would I have this problem if I used local views? Do I have to revert to foxpro 2.5 scan ... endscan to build the current ChildTable_id cursor?
Best Regards
Don Simpson
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform