D
Don
I've created a dataset from a query that returns a column from an
amalgamation of fields in the database.
e.g. SELECT [FirstName] & ' ' & [LastName] AS [FullName] FROM [tblPeople]
However, when I try to modify the value of this column ([FullName], in the
example), I get an error saying it's read only. I can edit the other
columns just fine, but I cannot modify this one.
Is there any way to make the dataset allow me to modify data in this column?
The dataset just contains throwaway data that I'm never going to write back
to the database anyway.
- Don
amalgamation of fields in the database.
e.g. SELECT [FirstName] & ' ' & [LastName] AS [FullName] FROM [tblPeople]
However, when I try to modify the value of this column ([FullName], in the
example), I get an error saying it's read only. I can edit the other
columns just fine, but I cannot modify this one.
Is there any way to make the dataset allow me to modify data in this column?
The dataset just contains throwaway data that I'm never going to write back
to the database anyway.
- Don