|
date Java.sql.Date
Datetime Java.sql.Timestamp
Timestamp Java.sql.Timestamp
Time Java.sql.Time
Year Java.sql.Date
對(duì)其進(jìn)行分析
參考MySql 的reference manual
Date:
A date. The supported range is '1000-01-01' to '9999-12-31'. MySQL displays DATE values in 'YYYY-MM-DD' format, but allows you to assign values to DATE columns using either strings or numbers.
只記錄日期信息,表示范圍為1000-01-01 至 9999-12-31。
MySql 按照YYYY-MM-DD 的方式進(jìn)行該類字段的顯示。添加該類字段數(shù)據(jù),即可以使用字符串類型,也可以使用數(shù)字類型
由于Date類型的字段只記錄日期信息,所以如果添加的數(shù)據(jù)中包含了時(shí)間信息,該時(shí)間信息將會(huì)自動(dòng)被截?cái)唷?BR>如果要保存時(shí)間信息,可以考慮使用DateTime類型。
經(jīng)過(guò)測(cè)試,發(fā)現(xiàn)如下2種方式可以對(duì)Date類型字段進(jìn)行填充:
按字符串:
insert into time_table(CreateDate) values(‘2007-04-09')
按數(shù)字:
insert into time_table(CreateDate) values(20070409)
獲取可以用Java.sql.Date類型獲取
代碼為:
Date dtDate =rsBuffer.getDate("CreateDate");
測(cè)試代碼如下:(其中,IDBFace 是自己基于JDBC封裝的一個(gè)簡(jiǎn)單類, 接受Sql對(duì)數(shù)據(jù)庫(kù)進(jìn)行操作)
復(fù)制代碼 代碼如下:
public void testDate()throws SQLException
{
IDBFace DBFace =DBFactory.createMySqlFace();
DBFace.connect();
//清空表
String strDelete ="delete from time_table";
DBFace.update(strDelete);
//添加
String strInsert ="insert into time_table(CreateDate) values(20070409)";
DBFace.update(strInsert);
//獲取
String strSelect ="select * from time_table";
ResultSet rsBuffer =DBFace.select(strSelect);
while(rsBuffer.next())
{
Date dtDate =rsBuffer.getDate("CreateDate");
System.out.println(dtDate.toString());
}
DBFace.close();
}
執(zhí)行結(jié)果: 2007-04-09
DateTime
A date and time combination. The supported range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'. MySQL displays DATETIME values in 'YYYY-MM-DD HH:MM:SS' format, but allows you to assign values to DATETIME columns using either strings or numbers.
DateTime 與Date最主要的區(qū)別在于:DateTime 可以記錄日期和時(shí)間信息。而Date只記錄日期信息。表示范圍為: 1000-01-01 00:00:00 至 9999-12-31 23:59:59 MySql的按照YYYY-MM-DD HH:MM:SS對(duì)數(shù)據(jù)進(jìn)行格式化,允許以字符串和數(shù)字的方式提交。
例如以數(shù)字的方式進(jìn)行提交:
insert into time_table(CreateDate) values(20070409132013)
獲取該類型的數(shù)據(jù)可以使用:Java.sql.Timestamp類型
代碼如下:
復(fù)制代碼 代碼如下:
public void testDateTime() throws SQLException
{
IDBFace DBFace =DBFactory.createMySqlFace();
DBFace.connect();
//清空表
String strDelete ="delete from time_table";
DBFace.update(strDelete);
//添加
String strInsert ="insert into time_table(CreateDateTime) values(20070409132013)";
DBFace.update(strInsert);
//獲取
String strSelect ="select * from time_table";
ResultSet rsBuffer =DBFace.select(strSelect);
while(rsBuffer.next())
{
Timestamp tsBuffer =rsBuffer.getTimestamp("CreateDateTime");
System.out.println(tsBuffer.toString());
}
DBFace.close();
}
執(zhí)行結(jié)果: 2007-04-09 13:20:13.0
TimeStamp
A timestamp. The range is '1970-01-01 00:00:00' to partway through the year 2037. A TIMESTAMP column is useful for recording the date and time of an INSERT or UPDATE operation. The first TIMESTAMP column in a table is automatically set to the date and time of the most recent operation if you don't assign it a value yourself. You can also set any TIMESTAMP column to the current date and time by assigning it a NULL value.
與DateTime類型非常相似
范圍為1970-01-01 主站蜘蛛池模板: 国产美女视频网站 | 99在线精品日韩一区免费国产 | 毛片在线播放视频 | 亚洲欧美一区二区三区不卡 | 午夜看片未满十八勿进 | 亚洲精品三区 | 丝袜综合网 | 久久99网站 | 国产馆手机在线观看 | 一区二区影视 | 一级做a爰片性色毛片小说 一级做a爰片性色毛片新版的 | 成人在线视频免费观看 | 日韩午夜高清福利片在线观看 | 久久成人精品视频 | 2021精品国产品免费观看 | 国产高清精品一级毛片 | 久久婷婷一区二区三区 | 中文字幕第一页国产 | www.天天干 | 缴情啪啪三级小说网 | 亚色国产| 欧美视频一 | 天天色天天干天天 | 亚洲视频三区 | 日本精品久久 | 一级女毛片 | 久久久久久极精品久久久 | 午夜国产视频 | 国产视频第二页 | 九九九网站 | 欧美一级特黄aa大片婷婷 | 国产精品人人视频 | 亚洲天堂色 | 久久国产精品夜色 | 国内一级特黄女人精品毛片 | 99久久好看一级毛片 | 毛片色毛片18毛片美女 | 免看一级a毛片一片成人不卡 | 国产一区二区三区国产精品 | 精品久久久久久久免费加勒比 | h国产在线观看 |