Hi,
I have a simple test-database with two tables (NB! this is from the top of my head as I don't have my developing computer with me at this moment):
TABLE #1:
Event
Id
Title
CreatedById
Content
TABLE #2:
User
Id
Username
Fullname
The query I'm trying to produce is as follows:
SELECT e.Title, e.Content, (SELECT u.Fullname FROM User u WHERE e.CreatedById = u.id) AS CreatedBy FROM Event e
This works when run from a SQLite manager tool such as DBTools Manager, but not from within the TableAdapter Wizard (and/or querybuilder) in the Designer.
Please tell me if there is some errors in the information I've provided, and I will post the exact information from my developing machine as soon as I get to it.
Regards,
wwfDev