Hi all,
I'm trying to bring up a table of data using a select query to create a DataSet that I'm displaying in a datagrid. When I use
SELECT * FROM myTable
it works fine, but when I only want the specific columns
SELECT URN, 'CanX Reason', 'Date to take effect?' FROM myTable
it doesn't.
The URNs are displaying fine but the other columns are not
URN Expr1001 Expr1002
221203 CanX Reason Date to take effect?
224774 CanX Reason Date to take effect?
225311 CanX Reason Date to take effect?
221184 CanX Reason Date to take effect?
222699 CanX Reason Date to take effect?
223932 CanX Reason Date to take effect?
Is there a way to correct this behaviour?