我正在与 java 和 mySQL 一起做一个出勤计划,但它对我来说效果不佳。这是代码:

I am doing an attendence program with java and mySQL, and its not working well with me. Here's the code:

有两个table,EntryTableExitTable。两者都有相似的列:id, date, time。当员工刷卡时,调用此函数。如果那天他已经打卡过,他的记录就被输入出口table。否则,它被输入条目 table。

public int addEntryRecord(String id) {

    try{
        Class.forName("com.mysql.jdbc.Driver");
        Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/Attend","rt","rt");
        Statement stmt = con.createStatement();

        long millis=System.currentTimeMillis();
        java.sql.Date date=new java.sql.Date(millis);
        Date today = new Date();
        Date currentTime = new java.sql.Time(today.getTime());

        stmt.executeQuery("SELECT id from Attend.EntryTable WHERE EntryTable.id ='"+id+"'and   
        EntryTable.DayOf='"+date+"'");                       
        ResultSet rs = stmt.getResultSet();
        System.out.println(rs.next());

        if(rs.next()== true){
            String sql = "INSERT Attend.ExitTable VALUES('"+id+"','"+date+"','"+currentTime+" ')";
            stmt.executeUpdate(sql);
            System.out.println("Good job");
           }

        else{
            String sql ="INSERT Attend.EntryTable VALUES('"+id+"','"+date+"','"+currentTime+"')";
            stmt.executeUpdate(sql);
            System.out.println("Entry noted");
           }
       }catch (Exception e) {
            System.out.println(e);
        }
        return 0;
    }

错误是记录总是进入ExitTable,不知道为什么。 请帮忙。

你需要一些空间

yTable.id ='"+id+"'and

否则 and 将作为 id

的一部分附加

但是

您真的应该使用 PreparedStatments 并使用 set* 方法

还有

System.out.println(rs.next());

实际上是在推进你的光标。如果你只有一行,下一个 rs.next 会 return false

你的代码有一些问题。

所有的拳头 ResultSet.next() 是不合理的。 如果你写:

System.out.println(rs.next());

下一次调用 rs.next() 可能是错误的(如果记录只有一个,就像您的情况一样)

如果您需要这样做,最好这样做:

boolean next = rs.next();
System.out.println( next );
if ( next ) {  

然后我建议在需要替换参数时使用准备好的语句而不是语句:

Prepared Statement Javadoc

再加上下次发布 table 模式,时间比较有时会很棘手,你检查过你使用的是正确的日期类型吗? (例如,日期而不是时间戳?)无论如何,如果您使用 Prepared 语句,comaprison 会更好。

我要补充一点,您从未关闭资源(大多数时候这是错误的)。

这是我在本地尝试并在我的系统上运行的一个简短示例:

    /*

数据库架构:

创建数据库参加;

出席时授予所有特权。* 由 'Tester_2020';

识别

创建 TABLE 条目表 ( id VARCHAR(100) 不为空, DayOf DATE 不为空, 时间不为空 );

创建 TABLE 退出表 ( id VARCHAR(100) 不为空, DayOf DATE 不为空, 时间不为空 );

 */

/*
 * Use an external method to access the connection, better in an external data source or factory.
 */
public Connection getConnection() throws Exception {
    Class.forName("com.mysql.jdbc.Driver");
    return DriverManager.getConnection("jdbc:mysql://localhost:3306/Attend", "rt", "Tester_2020");
}

/*
 * Usually is better to use a logging facility (slf4j, log4j, java.util.logging etc.)
 */
public void log( String message ) {
    System.out.println( message );
}

/*
 * Better not to suppress exception usually
 */
public int addEntryRecordPS(String id) throws Exception {
    // using try with resources to delegate closing connection.
    try ( Connection con = getConnection() ) {
        long millis = System.currentTimeMillis();
        java.sql.Date date = new java.sql.Date(millis);
        Date today = new Date();
        Time currentTime = new java.sql.Time(today.getTime());
        try ( PreparedStatement checkPstm = con.prepareStatement( "SELECT id from Attend.EntryTable WHERE EntryTable.id = ? and EntryTable.DayOf = ?") ) {
            checkPstm.setString( 1 , id );
            checkPstm.setDate( 2 , date );
            try ( ResultSet rs = checkPstm.executeQuery() ) {
                boolean next = rs.next();
                log( "hasNext? : "+next );
                if ( next ) {
                    // again try with resource (no need to close pstm)
                    try ( PreparedStatement pstm = con.prepareStatement( "INSERT INTO Attend.ExitTable ( id, DayOf, TimeOf ) VALUES ( ?, ? ,? ) " )  ) {
                        pstm.setString( 1 , id );
                        pstm.setDate( 2 , date );
                        pstm.setTime( 3 , currentTime );
                        int res = pstm.executeUpdate();
                        log("Good job "+res);
                    }
                } else {
                    // again try with resource (no need to close pstm)
                    try ( PreparedStatement pstm = con.prepareStatement( "INSERT INTO Attend.EntryTable ( id, DayOf, TimeOf ) VALUES ( ?, ? ,? ) " )  ) {
                        pstm.setString( 1 , id );
                        pstm.setDate( 2 , date );
                        pstm.setTime( 3 , currentTime );
                        int res = pstm.executeUpdate();
                        log("Entry noted "+res);
                    }
                }
            }
        }
    }
    return 0;
}

希望对你有所帮助。