hi
I've started learning data source controls
To my understanding, the only benefits of using data source controls instead of using regular data binding are the following:
you don’t have to write data access logic (thus you don’t have to create SqlCommand, SqlConnection etc, and you also don’t have to create Datareader or DataSet)
you are able to see in VS designer what columns will select query produce
you can bind parameters to other controls
a) Are there any other benefits of using data source controls?
b) As for data source controls relieving you of the tedious task of writing data access logic: Don’t data source controls in fact spare you of writing 10 lines of code at max? Is that really so beneficial or am I again missing something quite obvious?
bye