The purpose of this dialog box is to create a prepared statement that inserts, updates, or deletes records in a database.
Dreamweaver starts the SQL statement for you based on the type of operation you select.
For information on writing SQL statements that modify databases, consult a Transact-SQL manual.
In the Param column, enter the name of the SQL parameters used in the SQL statement. In the Run-time Value column, enter the form or URL parameter supplying a value to each SQL parameter. For example, if the value to be assigned to a SQL parameter is supplied by a URL parameter called txtCity, then enter the following run-time value:
request.getParameter("txtCity")
After you close the dialog box, Dreamweaver inserts JSP code in your page that, when run on the server, creates a prepared statement that inserts, updates, or deletes records in the database.