R
Raymond
I have a dataset with one table with two fields (LastName
and Firstname). With SQL I "create" one more field:
SELECT FirstName & ' ' & LastName AS Name FROM Names;
Now i have 3 fields in my datatable.
The problem is when I update the dataset, the field Name
doesn't update. How I can update my Dataset so Name will
update to.
I use OleDbDataAdapter and OleDbCommandBuilder to update
my data.
I need this to use a combobox for select items in the
table Names.
/Raymond
and Firstname). With SQL I "create" one more field:
SELECT FirstName & ' ' & LastName AS Name FROM Names;
Now i have 3 fields in my datatable.
The problem is when I update the dataset, the field Name
doesn't update. How I can update my Dataset so Name will
update to.
I use OleDbDataAdapter and OleDbCommandBuilder to update
my data.
I need this to use a combobox for select items in the
table Names.
/Raymond