T
Tony Johansson
Hello!
I'm reading in a book and here there is something that I hope you may know.
Normally a DataAdapter can be defined like this
SqlDataAdapter custAdapter = new SqlDataAdapter("Select * from Customers",
thisConnection);
custAdapter.fill(thisDataSet,"Customers");
But the book is using a different syntax in one example like this
SqlDataAdapter detailAdapter = new SqlDataAdapter("Select * from [Order
Detail]", thisConnection);
detailAdapter.fill(thisDataSet,"Order Details");
So my question is about the brackets[] when specifying the
select clause in detailAdapter ?
//Tony
I'm reading in a book and here there is something that I hope you may know.
Normally a DataAdapter can be defined like this
SqlDataAdapter custAdapter = new SqlDataAdapter("Select * from Customers",
thisConnection);
custAdapter.fill(thisDataSet,"Customers");
But the book is using a different syntax in one example like this
SqlDataAdapter detailAdapter = new SqlDataAdapter("Select * from [Order
Detail]", thisConnection);
detailAdapter.fill(thisDataSet,"Order Details");
So my question is about the brackets[] when specifying the
select clause in detailAdapter ?
//Tony