mysql數(shù)據(jù)庫(kù)修改添加Date格式列的方法
更新時(shí)間:2014年07月23日 17:04:03 投稿:whsnow
這篇文章主要介紹了關(guān)于mysql數(shù)據(jù)庫(kù)如何修改添加Date格式的列 ,需要的朋友可以參考下
import java.sql.*; import java.text.DateFormat; //數(shù)據(jù)庫(kù)的查詢(xún) public class SelectTable { String dbDriver="com.mysql.jdbc.Driver"; String dbUrl="jdbc:mysql://localhost:3306/sss";//根據(jù)實(shí)際情況變化 String username="root"; String password="123"; public Connection getConn() { Connection conn=null; try { Class.forName(dbDriver); } catch (ClassNotFoundException e) { e.printStackTrace(); } try { conn = DriverManager.getConnection(dbUrl,username,password);//注意是三個(gè)參數(shù) } catch (SQLException e) { e.printStackTrace(); } return conn; } public void select(){ Connection conn = getConn(); try{ Statement stmt = conn.createStatement(); //創(chuàng)建Statement對(duì)象 System.out.println("成功連接到數(shù)據(jù)庫(kù)!"); String sql = "select * from jdbc"; //要執(zhí)行的SQL ResultSet rs = stmt.executeQuery(sql);//創(chuàng)建數(shù)據(jù)對(duì)象 System.out.println("id"+"\t"+"name"+"\t"+"brithday"); while (rs.next()){ System.out.print(rs.getInt(1) + "\t"); System.out.print(rs.getString(2) + "\t"); System.out.print(rs.getDate(3) + "\t"); System.out.println(); } }catch(Exception e){ e.printStackTrace(); } } public void insert(){ Connection conn = getConn(); try{ Statement stmt = conn.createStatement(); System.out.println("成功連接到數(shù)據(jù)庫(kù)!"); String sql = "insert into jdbc (id,name,birthday) values(?,?,?)"; PreparedStatement pst =conn.prepareStatement(sql); DateFormat df = DateFormat.getDateInstance(); java.util.Date dd = df.parse("2000-12-12");//將YYYY-MM-DD格式的時(shí)間轉(zhuǎn)換為date long t = dd.getTime(); java.sql.Date date = new java.sql.Date(t); pst.setInt(1, 5); pst.setString(2, "limazhi"); pst.setDate(3, date); pst.executeUpdate(); select(); }catch(Exception e){ e.printStackTrace(); } } public static void main(String args[]){ SelectTable st = new SelectTable(); st.insert(); } }
您可能感興趣的文章:
- MYSQL數(shù)據(jù)庫(kù)中的現(xiàn)有表增加新字段(列)
- Mysql中返回一個(gè)數(shù)據(jù)庫(kù)的所有表名,列名數(shù)據(jù)類(lèi)型備注
- 數(shù)據(jù)庫(kù)實(shí)現(xiàn)行列轉(zhuǎn)換(mysql示例)
- Sql查詢(xún)MySql數(shù)據(jù)庫(kù)中的表名和描述表中字段(列)信息
- mysql增刪改查基礎(chǔ)語(yǔ)句
- Mysql的增刪改查語(yǔ)句簡(jiǎn)單實(shí)現(xiàn)
- Mysql表,列,庫(kù)增刪改查問(wèn)題小結(jié)
- MySQL數(shù)據(jù)庫(kù)列的增刪改實(shí)現(xiàn)方法
相關(guān)文章
用Eclipse連接MySQL數(shù)據(jù)庫(kù)的步驟
這篇文章主要介紹了如何用Eclipse連接MySQL數(shù)據(jù)庫(kù),需要的朋友可以參考下2015-08-08Navicat for SQLite導(dǎo)入csv中文數(shù)據(jù)的方法
這篇文章主要為大家詳細(xì)介紹了Navicat for MySql導(dǎo)入.CSV文件的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-05-05mysql執(zhí)行時(shí)間為負(fù)數(shù)的原因分析
今天看到有人把phpmyadmin中的執(zhí)行時(shí)間出現(xiàn)負(fù)數(shù)的情況視為phpmyadmin的bug, 其實(shí)這種情況的本質(zhì)是php中浮點(diǎn)數(shù)(float)的精度問(wèn)題。2010-08-08解決MySQL數(shù)據(jù)庫(kù)意外崩潰導(dǎo)致表數(shù)據(jù)文件損壞無(wú)法啟動(dòng)的問(wèn)題
這篇文章主要介紹了MySQL數(shù)據(jù)庫(kù)意外崩潰導(dǎo)致表數(shù)據(jù)文件損壞無(wú)法啟動(dòng)的問(wèn)題及解決方法,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-07-07MySQL實(shí)時(shí)監(jiān)控工具orztop的使用介紹
這篇文章主要給大家介紹了MySQL實(shí)時(shí)監(jiān)控工具orztop的使用,文中給出了詳細(xì)的介紹,相信對(duì)大家的學(xué)習(xí)具有一定的參考借鑒價(jià)值,有需要的朋友可以參考借鑒,下面來(lái)一起看看吧。2017-01-01mysql DBA:mysqladmin常用命令總結(jié)
mysqladmin是MySQL一個(gè)重要的客戶(hù)端,最常見(jiàn)的是使用它來(lái)關(guān)閉數(shù)據(jù)庫(kù),除此,該命令還可以了解MySQL運(yùn)行狀態(tài)、進(jìn)程信息、進(jìn)程殺死等。本文介紹一下如何使用mysqladmin extended-status(因?yàn)闆](méi)有"歧義",所以可以使用ext代替)了解MySQL的運(yùn)行狀態(tài)2014-03-03lnmp下如何關(guān)閉Mysql日志保護(hù)磁盤(pán)空間
這篇文章主要介紹了lnmp下如何關(guān)閉Mysql日志保護(hù)磁盤(pán)空間的相關(guān)資料,需要的朋友可以參考下2015-09-09