Workshop

These quiz questions are designed to test your knowledge of the material covered in this chapter. The answers to the quiz questions can be found in Appendix A, “Answers to Quizzes.”

Quiz

1:What is the purpose of the ExecuteNonQuery() method of the Command object?
2:True or false: Using the ExecuteNonQuery() method to execute a query that returns data will result in an exception error being thrown from the data layer.

Exercise

Given that the SQL command to create a new table in your data source is

CREATE TABLE TableName
   (
    Field1 int,
    Field2 varchar(50),
    Field3 int
   )

Using the examples in this hour as a guide, create a Windows form or Web form that will enable you to create a database table. The table name and field names should be dynamically ...

Get Sams Teach Yourself ADO.NET in 24 Hours now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.