I'm creating a method that populates some textboxes with data retrieved from an Access database using table adapters.
The GetCasesWithUserFromCaseId
method return a single case with the username
which is found by left joining my cases table with my users table.
For some reason I get a NullReferenceException when trying to access the joined data (userdata) from the users table but data from the cases table works. I'm sure that all fields is set for all users and all cases-tablerows.
If this doesn't work how do I then alternately get my data? I've attached an image showing my simple database.
The sql-statement:
SELECT *
FROM cases
LEFT JOIN users ON cases.caseCreatedBy = users.userId
WHERE caseId = caseNum
The C# code:
public void populateBoxes(int caseId)
{
caseDBTableAdapters.casesTableAdapter casesAdapter =
new caseDBTableAdapters.casesTableAdapter();
caseDB.casesDataTable cases;
cases = casesAdapter.GetCasesWithUserFromCaseId(caseId);
foreach (caseDB.casesRow casesRow in cases)
{
tbCaseName.Text = casesRow.caseName;
tbOwner.Text = casesRow.usersRow.firstName.ToString();
}
}
Well, the point is: if you do a
LEFT OUTER JOIN
on yourUsers
table, then this statement here is dangerous:With a
LEFT OUTER JOIN
, there's a chance that there are no users for your case - socasesRow.usersRow
would be null.You need to check for that!