java JDBC-插入时间类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java JDBC-插入时间类型相关的知识,希望对你有一定的参考价值。
public class Demo7 {
public static void main(String[] args) {
Connection conn=null;
PreparedStatement ps=null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","dyl123");
ps=conn.prepareStatement("insert into t_user(username,pwd,regTime,lastLoginTime) values(?,?,?,?)");
ps.setObject(1, "html5");
ps.setObject(2, "12355");
//java.sql.Date,显示年月茹
//java.sql.Time,显示时分秒
//java.sql.Timestamp,显示年月日时分秒
//sql.Date()没有空构造器,需要传入一个lang类型的数值
java.sql.Date date=new java.sql.Date(System.currentTimeMillis());
ps.setDate(3, date);
//时间戳,可以穿传lang类型的数值或具体年月日时分秒
java.sql.Timestamp stamp=new java.sql.Timestamp(System.currentTimeMillis());
ps.setTimestamp(4,stamp);
//插入随机日期
ps.execute();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}finally {
try {
if(null!=ps)
{
ps.close();
}
}catch(SQLException e)
{
e.printStackTrace();
}
try {
if(null!=conn)
{
conn.close();
}
}catch(SQLException e)
{
e.printStackTrace();
}
}
}
}
以上是关于java JDBC-插入时间类型的主要内容,如果未能解决你的问题,请参考以下文章
求助!!如何在java代码中,将日期插入mysql数据库(对应字段类型是datetime),用JDBC连接数据库。
使用 jdbc 在 hive 中插入 map 和其他复杂类型