August 7, 2008

CFM Inserting Values to the Database Table

Cold Fusion Code:

Inserting Values to the Database Table.

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>

<cfif IsDefined(’FORM.submit’)>
<cfquery  datasource="dsSchDb">
INSERT INTO Employee(employee_ID, lastname, firstname, age, address, city, department_ID, salary)
VALUES(#FORM.employee_ID#, ‘#FORM.lastname#’, ‘#FORM.firstname#’, #FORM.age#, ‘#FORM.address#’, ‘#FORM.city#’, #FORM.department_ID#, #FORM.salary#)
</cfquery>
<cfoutput>#FORM.lastname#, #FORM.firstname# Has Been Successfully Added….</cfoutput>
</cfif>

<form name = "name" method="post" action="">
<table width="100%" border="1">
  <tr>
    <td>Employee ID</td>
    <td><input name="employee_ID" type="text"></td>
  </tr>
  <tr>
    <td>Last Name</td>
    <td><input name="lastname" type="text"></td>
  </tr>
  <tr>
    <td>First Name</td>
    <td><input name="firstname" type="text"></td>
  </tr>
  <tr>
    <td>Age</td>
    <td><input name="age" type="text"></td>
  </tr>
  <tr>
    <td>Address</td>
    <td><input name="address" type="text"></td>
  </tr>
  <tr>
    <td>City</td>
    <td><input name="city" type="text"></td>
  </tr>
  <tr>
  <td>

Department
</td>
  <td>
 
  <select name = "department_id">
  <cfquery name = "qDept" datasource="dsSchDb">
  SELECT department_id, name
  From Department
  ORDER BY name
  </cfquery>
  <cfoutput query = "qDept">
  <option value = ‘#qDept.department_id#’>#qDept.name#</option>
  </cfoutput></select>  
 
  </tr>
  <tr>
    <td>Salary</td>
    <td><input name="salary" type="text"></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><input name="submit" type="submit" value="Submit"></td>
  </tr>
</table>
</form>

</body>
</html>

1 Comment »

The URI to TrackBack this entry is: http://seansome.blogsome.com/2008/08/07/cfm-inserting-values-to-the-database-table/trackback/

  1. Hi, this is Visitor Blogger. I can see some similarities with your ideas and mine and I really like it. Please visit my new set of blogs:

    American Blog
    American Classic
    American Idols
    American Traveler
    Planet America

    Thank you very much. Enjoy blogging…

    Comment by Visitor Blogger — September 11, 2008 @ 9:38 am

RSS feed for comments on this post.

Leave a comment

Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>



Anti-spam measure: please retype the above text into the box provided.