December 2002
Beginner
624 pages
12h 9m
English
IN THIS CHAPTER
One of the most important tasks that you’ll need to perform when building a database-driven application is saving form data to a database table. For example, if your Web site includes a pizza order form, you’ll need some method of saving the pizza orders to a database table.
In this chapter, we’ll focus on methods for saving data to a database. You’ll learn
How to represent and execute SQL commands with the Command object
How to use parameters when executing an SQL command
How to optimize your application by using SQL stored procedures with the Command object
How to create a pizza ...