Latest Tutorials
|
Questions and Answers
|
Ask Questions?
|
Site Map
Home
Java
Frameworks
Database
Technology
Web Development
Build/Test Tools
Servers
PHP
Home
Answers
Viewqa
Java-Beginners
how to include Timestamp into my enquiry form?
Login
Question
Ask Questions?
Karen
how to include Timestamp into my enquiry form?
0 Answer(s)
2 years and 10 months ago
Posted in :
Java Beginners
Dear expert,
I'd like to include a timestamp function into my enquiry form.
However, I am stuck at the servlet portion whereby I want to map my Timesatmp class to my update_time field in my database.
Here's my Timestamp.java code:
public class Timestamp{
private Timestamp updatedTime;
public void setUpdatedTime(Timestamp updatedTime){
this.updatedTime = updatedTime;
}
public Timestamp getUpdatedTime(){
return updatedTime; } }
And here's my servlet :
import java.io.*;
import java.io.PrintWriter;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.*;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
public class ProcessEnquiry extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
Connection con = null;
ResultSet rs = null;
PreparedStatement ps = null;
Statement stmt = null;
String strName = "";
String strEmail = "";
String strContact = "";
String strEnquiry = "";
String strMessage = "";
String strCreateRecordSQL = "";
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost/xxx", "xxx", "xxx");
strName = request.getParameter("name").trim();
strEmail = request.getParameter("e-mail").trim();
strContact = request.getParameter("contact").trim();
strEnquiry = request.getParameter("enquiry").trim();
strTime = return updated_time;
strCreateRecordSQL = "INSERT INTO enquiry";
strCreateRecordSQL += "(strName, strEmail, strContact, "
+ " strEnquiry, updated_time) "
+ "VALUES (?,?,?,?,?)";
ps = con.prepareStatement(strCreateRecordSQL);
//Fill up the blanks (?) in the SQL with the form data
ps.setString(1, strName);
ps.setString(2, strEmail);
ps.setString(3, strContact);
ps.setString(4, strEnquiry);
ps.setString(5, strTime);
ps.executeUpdate();
out.println("Your mail is sent");
strMessage = "<a href=\"index.jsp\">Click here to return to Home Page";
out.println(strMessage);
} catch (SQLException e) {
throw new ServletException("Servlet could not display records", e);
} catch (ClassNotFoundException e) {
throw new ServletException("JDBC Driver Not Found", e);
} finally {
try {
if (rs != null) {
rs.close();
rs = null;
}
if (stmt != null) {
stmt.close();
stmt = null;
}
if (con != null) {
con.close();
con = null;
}
} catch (SQLException e) {
throw new ServletException("Servlet could not display records", e);
}
}
out.close();
}
}
In my database column I have added in this field -
updated_time
Hope to hear from you soon....am very excited about this DAO concept and really hope to learn it from you guys....many thanks.
View Answers
Post Answer
Preview:
Related Pages:
how to include Timestamp into my enquiry form? - Java Beginners
product enquiry form
use forms.
Include CSS in HTML
include php in html
Hide show HTML forms using javascript
How to include?
Jsp include page problem
jsf forms - Java Server Faces Questions
JSP - Abobe Interactive Forms - JSP-Servlet
how to include a java class in jsp - JSP-Servlet
Php Sql Timestamp
use tables to structure forms
use tables to structure forms
tables to structure forms
tables to structure forms
JSP WITH MULTIPLE FORMS
JAVA BEAN WITH ORACLE FORMS
Two forms and One Servlet
PHP SQL Timestamp
php include
inteconnecting forms - JSP-Servlet
Multiple Forms in JSP
Include Static HTML Page in JSP
SQL Between Timestamp
Date forms
JDBC: Get current TimeStamp Example
Set Timestamp by using the Prepared Statement
include comments in HTML
How to include website in google search?
include a static file
Two forms submission to one Action Class in Struts2.0
How to use Bean Area in Oracle Forms 9i with Sample code ?
Struts <s:include> - Struts
include a jsp file
fill out forms on web pages - JDBC
Print Only Forms Contents - Java Beginners
How can I to my database to my application
how to include an html page inside a tab
timestamp - JDBC
How to include a File using directive and include action
my project
The Include Directive in JSP Page
How to use RequestDispatcher include method
View the mysql querys by and my Php WebApp
how to refresh my GUI page
@WebServlet RequestDispatcher Include Example
JSPs : include Directives
php include and require
Clarify my last question's answer - Java Beginners
Latest
Frameworks
Category
Show pdf's in web browser by using jsp?
Google says Start Searching India
Most Effective SEO Tools
Assigning value to anchor <a></a> tag using custom tag
java code using while loop
what kind of error
home button macbook pro keyboard
ahmad
Struts 2 + Ajax
Java set example
Hibernate
Struts 1.x
Struts 2
JSF
JavaFX
Ajax
Spring 2.5
Spring 3
DOJO
iBatis
Flex 3
Flex 4
Hibernate Framework
( 1057 )
Struts Framework
( 836 )
Spring Framework
( 567 )
XML
( 196 )
Ajax
( 528 )
JavaScript
( 109 )
Java
( 1806 )
Web Services
( 71 )
Database
( 145 )
Technology
( 90 )
Web Development
( 503 )
PHP
( 406 )