Results 1 to 17 of 17

Thread: Unbalanced JSTL <sql:update> tag?

Threaded View

  1. #1

    Thread Starter
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418

    Resolved Unbalanced JSTL <sql:update> tag?

    Tomcat says unbalanced end tag. Im not quite sure what the problem is though. Perhaps the problem is the SQL itself. Does anything look wrong?
    Code:
     <sql:update>
        UPDATE Employees
         SET fname = ?,
         lname = ?,
         phonenum = ?,
         WHERE empid = ?
         <sql:param value = "${param.fname}"/>
         <sql:param value = "${param.lname}"/>
         <sql:param value = "${param.phonenum}"/>
         <sql:param value = "${param.empid}"/>
     </sql:update>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width