Course Content
Introduction to .NET with C#
Introduction to .NET with C#
Task - Reading Tables using MySqlDataAdapter
We are working on the employees
table from the last task. You have a program given below that reads some columns from a table. It uses the MySqlDataReader
object to read and display the data. Your task is to read and display the exact same data using MySqlDataAdapter
instead.
This task doesn't have test cases. If you successfully manage to output the correct data using the DataAdapter then it means your solution is correct. You can also verify the correctness of your solution by comparing it with the solution given below.
Thanks for your feedback!