You can use a stored procedure to modify a database. A stored procedure is a reusable database item that performs some operation on the database.
NOTE |
|
Microsoft Access and MySQL databases do not support stored procedures. |
Before you use a stored procedure to modify a database, make sure the stored procedure contains SQL that modifies the database in some way. To create and store one in your database, consult your database documentation and a good Transact-SQL manual.
The Stored Procedure dialog box appears.
For more information, see Setting the Stored Procedure dialog box options (ASP.NET).
After you close the dialog box, Dreamweaver inserts ASP.NET code in your page that, when run on the server, executes a stored procedure in the database. The stored procedure in turn performs a database operation, such as inserting a record or executing a query.
If the stored procedure takes parameters, you might create a page that gathers the parameter values and submits them to the page with the stored procedure. For example, you may create a page that uses URL parameters or an HTML form to gather parameter values from users.