I have an access database that has 10 fields label '0' thru '9'. When I set up a sql query to pull data from these fields rather than getting the field names listed correctly in the DataEnvironment it lists the 10 fields as Expr 1000 thru Expr 1009.
These are not the only fields in the Table else I'd simply do a Select *. So, I acutally have the query written as "Select 0,1,2,3,4,5,6,7,8,9 From Hannah Where (date = sDate)
If I do a Select * it reflects the fields correctly but when I individualize them I get Expr 1000-1009 and the app errors out saying it cannot find the name/ordinal.
Any help with this would be appreciated.
These are not the only fields in the Table else I'd simply do a Select *. So, I acutally have the query written as "Select 0,1,2,3,4,5,6,7,8,9 From Hannah Where (date = sDate)
If I do a Select * it reflects the fields correctly but when I individualize them I get Expr 1000-1009 and the app errors out saying it cannot find the name/ordinal.
Any help with this would be appreciated.