1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
| using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using MySql.Data.MySqlClient;
using System.Data.SqlClient;
using System.Collections;
using System.Runtime.InteropServices;
namespace WindowsApplication1
{
public partial class Form2 : Form
{
MySqlConnection connection;
string ID="";
Form1 f;
public Form2(Form1 f)
{
InitializeComponent();
this.f=f;
}
private void timer1_Tick(object sender, EventArgs e)
{
if (!this.Focused)
this.Focus();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button1_MouseClick(object sender, MouseEventArgs e)
{
string s = TextBox1.Text;//s contient le code
//il faut se connecter a la base de donnée
if (s.IndexOf("'") == -1 && s.IndexOf("\"") == -1)
SQLConnect(s);
}
public void SQLConnect(String s1)
{
string DBName = "bd_vendin_internet";
string Server = "localhost";
string Login = "root";
string Password = "";
connection = new MySqlConnection("Server=" + Server + ";Database="
+ DBName + ";User ID=" + Login + ";Password=" + Password + ";");
try
{
this.connection.Open();
//textBox1.Text ="OK";
}
//On verifie que MySql ne leve pas d'exception
catch (MySqlException sqlEx)
{
TextBox1.Text = sqlEx.Message;
}
catch (Exception ex)
{
TextBox1.Text = ex.Message;
}
//il faut executer la requete sql :
// Objet Command
MySqlCommand command = new MySqlCommand("select id from client where numero ='" + s1 + "'", connection);
// Objet DataReader
MySqlDataReader reader = null;
try
{
reader = command.ExecuteReader();
}
catch (Exception e)
{
TextBox1.Text = e.Message;
}
Object[] row = null;
while (reader.Read())
{
if (row == null)
row = new Object[reader.FieldCount];
reader.GetValues(row);
for (int i = 0; i < row.GetLength(0); i++)
{
if (row[i] != DBNull.Value)
ID = (string)row[i];
}
}
reader.Close();
string req = "select * from flux where heure_sortie='' and id_client ='" + ID + "' and log='non'";
MySqlCommand command2 = new MySqlCommand("select heure_entree from flux where heure_sortie='' and id_client ='" + ID + "' and log='non'", connection);
// Objet DataReader
MySqlDataReader reader2 = command2.ExecuteReader();
Object[] row2 = null;
while (reader2.Read())
{
if (row2 == null)
row2 = new Object[reader2.FieldCount];
reader2.GetValues(row2);
for (int i = 0; i < row2.GetLength(0); i++)
{
f.reduire();
f.active = true;
f.active_timer();
Form1.heure = (string)row2[i];
this.Close();
}
}
reader2.Close();
this.log(ID, connection);
req = "select pass from pass";
MySqlCommand command3 = new MySqlCommand(req, connection);
// Objet DataReader
MySqlDataReader reader3 = command3.ExecuteReader();
Object[] row3 = null;
while (reader3.Read())
{
if (row3 == null)
row3 = new Object[reader3.FieldCount];
reader3.GetValues(row3);
ID = TextBox1.Text;
if (ID.Equals((string)row3[0]))//si le pass admin est bon
{
Form4 p = new Form4(ID,f);
f.Visible=false;
f.active = true;
f.desactive_timer();
this.Close();
}
}
reader3.Close();
}
private void log(string E, MySqlConnection connection)
{
MySqlCommand cmd = new MySqlCommand("update flux set log='oui' where heure_sortie='' and id_client ='" + E + "' and log='non'", connection);
try
{
MySqlDataReader rd = cmd.ExecuteReader();
rd.Close();
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
}
private void focus_form_Tick(object sender, EventArgs e)
{
this.Focus();
}
private void Form2_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
MessageBox.Show(""+e.KeyCode);
}
}
} |