Проверка времени в (посещаемость C#)

Я делаю небольшую программу, где сотрудник будет время вход / выход. У сотрудника есть идентификатор сотрудника, и именно он должен использоваться для того, чтобы время входило и выходило.

Время в порядке, но моя проблема здесь в том, что работник может работать много раз без перерыва.

То, что я пытаюсь сделать, это то, что всякий раз, когда сотрудник работает, ему / ей не разрешают войти снова, если он / она не делает тайм-аут.

Вот что я сделал до сих пор:

private void TimeIN()
    {
        //check if Employee ID belongs to the tbl_humans table

        Connection();
        sql_connect.Close();
        sql_connect.Open();
        sql_command = new MySqlCommand("Select * from tbl_humans where ID = '" + textBox1.Text + "' ;", sql_connect);

        sql_reader = sql_command.ExecuteReader();

        string username;
        //string password;

        username = (textBox1.Text);
        // password = (textBox2.Text);

        int count = 0;

        while (sql_reader.Read())
        {
            count = count + 1;
        }


        //checks if the Employee ID has been already timed in on tbl_loginout
        // if it's already timed in, it will display "You time out first"
        // but unfortunately, it's not working and still continues to time in the employee even if the employee is already timed in

        if (count == 0) 
        {
           try
           {
               Connection();
               sql_connect.Close();
               sql_connect.Open();


               sql_command = new MySqlCommand
                   ("Select * from tbl_loginout where ID = '" + textBox1.Text +
                   "' and timein_date = '" + DateTime.Today.ToString() + // checks if the employee is timed in on that day(today)
                   "' and timeout_time = '" + DateTime.Now.ToString("00:00:00") + // checks if the employee is still not time out
                   "';", sql_connect);
               sql_reader = sql_command.ExecuteReader();

               MessageBox.Show("You Time Out first");
           }

           catch (Exception aa)
           {
               MessageBox.Show(aa.Message);
           }
       }

Помощь будет оценена. Спасибо!

1 ответ

Попробуйте удалить "' and timeout_time = '" + DateTime.Now.ToString("00:00:00") + "';" из вашего запроса или заменить его "' and timeout_time = null;",

В общем, вы должны написать SQL, который вы хотите использовать вручную, и выполнить его напрямую, чтобы убедиться, что он возвращает то, что вы хотите.

Еще один комментарий: вы казните читателя sql_reader = sql_command.ExecuteReader(); и ничего не делать с результатом, вы просто показываете окно сообщения независимо от того, каков реальный результат.

Другие вопросы по тегам