当前位置: 技术问答>java相关
很急的orical问题
来源: 互联网 发布时间:2015-08-20
本文导语: 如何往orical数据库中添时间类型的数据以及如何读出(包括日期和时间的写入与读出)时间或日期单独读出。 | Insert into table1 (name, birthday) values('LED',to_date('2002-09-01 08:24:10','yyyy-mm-dd hh:mm:ss'))...
如何往orical数据库中添时间类型的数据以及如何读出(包括日期和时间的写入与读出)时间或日期单独读出。
|
Insert into table1 (name, birthday) values('LED',to_date('2002-09-01 08:24:10','yyyy-mm-dd hh:mm:ss'));
|
insert into table (rq) values(sysdate);
当前时间
读出
SimpleDateFormat fmt =new SimpleDateFormat("yyyy-MM-dd hh24:mi",Locale.US);
Timestamp rq=rs.getTimestamp("rq");
out.print(fmt.format(rq));
当前时间
读出
SimpleDateFormat fmt =new SimpleDateFormat("yyyy-MM-dd hh24:mi",Locale.US);
Timestamp rq=rs.getTimestamp("rq");
out.print(fmt.format(rq));
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。