M
magicpatel
I have a form that saves data to various tables using code, and this
all seems to work.
But when i try to run a query on some of the tables, some data is
displayed, but anything newly added through the form isnt shown. Whats
strange is that the data is correctly in the respective tables?!
Maybe its something to do with the way I add it to the tables using
code (dirty)?
Heres the query/sql that im using:
SELECT [TitleAreas].[FieldSetOrder], [TitleAreas].[FieldTitleArea],
[Topics].[FieldTopic], [References].[FieldRefNo]
FROM (Topics INNER JOIN (TitleAreas INNER JOIN Titles_Topics ON
[TitleAreas].[TitleID]=[Titles_Topics].[TitleID]) ON
[Topics].[TopicID]=[Titles_Topics].[TopicID]) INNER JOIN ([References]
INNER JOIN Topics_References ON
[References].[RefID]=[Topics_References].[RefID]) ON
[Topics].[TopicID]=[Topics_References].[TopicID]
ORDER BY [TitleAreas].[FieldSetOrder];
Any thoughts would be very helpful.
Thanks in advance.
all seems to work.
But when i try to run a query on some of the tables, some data is
displayed, but anything newly added through the form isnt shown. Whats
strange is that the data is correctly in the respective tables?!
Maybe its something to do with the way I add it to the tables using
code (dirty)?
Heres the query/sql that im using:
SELECT [TitleAreas].[FieldSetOrder], [TitleAreas].[FieldTitleArea],
[Topics].[FieldTopic], [References].[FieldRefNo]
FROM (Topics INNER JOIN (TitleAreas INNER JOIN Titles_Topics ON
[TitleAreas].[TitleID]=[Titles_Topics].[TitleID]) ON
[Topics].[TopicID]=[Titles_Topics].[TopicID]) INNER JOIN ([References]
INNER JOIN Topics_References ON
[References].[RefID]=[Topics_References].[RefID]) ON
[Topics].[TopicID]=[Topics_References].[TopicID]
ORDER BY [TitleAreas].[FieldSetOrder];
Any thoughts would be very helpful.
Thanks in advance.