We then create a SqlCommand object that specifies the SQL query to execute (in this case, selecting all rows from the "Customers" table). We execute the command using the ExecuteReader() method, which returns a SqlDataReader object that we can use to iterate over the results.
Finally, we close the reader and the connection when we're done.