G
Guest
I have a select statement like this:
string Select = "Select TableofContents, DataOwner, Delegates From NYC";
and it work fine, but if I was to put a space in like this:
string Select = "Select Table of Contents, Data Owner, Delegates From NYC";
I would get an error in my da.fill(ds);
Why can I not use a space in my select statement. I have to connect to a db,
but I can not change it.
string Select = "Select TableofContents, DataOwner, Delegates From NYC";
and it work fine, but if I was to put a space in like this:
string Select = "Select Table of Contents, Data Owner, Delegates From NYC";
I would get an error in my da.fill(ds);
Why can I not use a space in my select statement. I have to connect to a db,
but I can not change it.