JSP如何儲存使用者上次登入時間

jianghe_03發表於2008-04-11
程式碼是以Access庫為例,日期物件使用的java.sql.Date()型別,因為據測試java.util.Date型別是不能新增到DateTime型別的欄位中的:作者:淘特網

出處:http://www.tot.name

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();
}
}

相關文章