1 |
Inserting data into a database is usually done with two application pages:
|
2 | You can create an insert form with CFFORM tags or with standard HTML form tags. When the form is submitted, form variables are passed to a Cold Fusion page that performs an insert operation (and whatever else is called for) on the specified data source. The insert page can contain either a CFINSERT tag or a CFQUERY tag with a SQL insert statement. The insert page should also contain a message for the end user. |