扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
import java.sql.*; import java.text.*; /** * 代码 */ public class MSAccessDB { public static SimpleDateFormat sd=new SimpleDateFormat("MMM dd yyyy"); private PreparedStatement pStmt=null; private Statement stmt=null; private Connection msConn=null; public MSAccessDB() { try { jbInit(); int userID=1; listLoginData();//列出用户信息,上次登录时间... updateUserLogin(userID);//更新用户表中的信息,登录时间... listLoginData();//再次显示用户信息,以便对比 } catch(Exception e) { e.printStackTrace(); } } private void listLoginData() throws SQLException { ResultSet rs=stmt.executeQuery("select * from user_table"); while (rs.next()) { System.out.print(rs.getInt("user_id")+"\t"); System.out.print(rs.getString("nick_name")+"\t"); System.out.print(rs.getString("last_name")+"\t"); System.out.print(rs.getString("first_name")+"\t"); System.out.print(sd.format(rs.getDate("last_access_date"))+"\n"); } } private void updateUserLogin(int userID) throws SQLException { java.sql.Date today=new java.sql.Date(System.currentTimeMillis()); pStmt.setDate(1,today); pStmt.setInt(2,userID); pStmt.executeUpdate(); } private void jbInit() throws Exception { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); msConn=DriverManager.getConnection("jdbc:odbc:test_db;;;"); String psStr="update user_table set last_access_date=? where user_id=?"; pStmt=msConn.prepareStatement(psStr); stmt=msConn.createStatement(); } public static void main(String[] args) { MSAccessDB mdb=new MSAccessDB(); } } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者