sql >> データベース >  >> RDS >> Mysql

VB.NETで1日のタイムアウトを制限しますか?

    これは、このロジックを開発していることを非常に嬉しく思います。実際、私はあなたの質問に交差しました。これで、バックエンドMS ACCESS 2007を使用してvb.netコードをお勧めします。従業員がログインしたときに検証し、ログインボタンまたは使用しているものの後にこのコードを配置するだけです。

    Dim cmd1 as oledbcommond
    
    cmd1 = New OleDbCommand("SELECT * FROM LOGTIME WHERE timein<>null  and timeout<>null and dt='" & Label8.Text & "' and eid='" & txtemid.Text & "' ", cn)
    
        dr = cmd1.ExecuteReader()
        If dr.Read Then
            MessageBox.Show("Already this Employee ID contains today's attendance,now you can't Log again", "Information On Your ID", MessageBoxButtons.OK, MessageBoxIcon.Information)
            cmd1.Dispose()
            cn.Close()
            Exit Sub
        End If
    


    1. matplotlibを使用してグラフを更新する方法

    2. Mysql:select <fieldname> fromの結果の順序は、select*fromの結果の順序とは異なります。

    3. 動的に変化する列で2つのテーブルを結合する

    4. 2つのクエリの結果を結合するmysql