- This topic has 2 replies, 2 voices, and was last updated 10 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Integrated Application Platform
Integrated Application Platform › Forums › General › Need help please – Browse Control
Hi,
I’m new to Suneido and trying it out for a project. I’m struggling with the fairly basic concept of Master-Detail relationships. I keep getting errors in my code, in tracking them down I’ve implemented the example code from the user manual for ‘Master-Detail’ relationships. This gives the same error. I can also get the error message by simply entering ‘BrowseControl(“tables”)’ from the Workspace.
The error message I get is “query: nonexistent table: suneidolog”, raised in ‘BrowseControl.GetColumnSaveName’. Am I doing something stupid, or have I tripped over a bug?
Thanks,
John.
Hi John,
You are not doing anything stupid. It looks like BrowseControl is making an assumption that the suneidolog table exists when on a new installation it may not yet exist. It looks like the suneidolog table is created the first time an output is done to it. You can create the table manually from the WorkSpace by running:
SuneidoLog.Ensure()
BrowseControl should probably be a bit more robust and handle the case where suneidolog does not exist.
Many thanks. Sample code and my own code now seems to be working (as well as can be expected for a first try that is!). Your prompt response is much appreciated.
Regards,
John.