예제 #1
0
        private void btn_üye_Click(object sender, EventArgs e)
        {
            k.kullanıcı_ekle(txtad.Text, txtsoyadı.Text, txtkullanıcıad.Text, txtşifre.Text, txttc.Text, txttelefon.Text, txtemail.Text, txtadres.Text);

            bağlantı.Open();
            OleDbCommand komut = new OleDbCommand("select * from kullanıcılar where email like '" + txtemail.Text + "'", bağlantı);

            OleDbDataReader oku = komut.ExecuteReader();

            while (oku.Read())
            {
                usertype = Convert.ToInt32(oku["userID"]);
            }
            bağlantı.Close();
            bağlantı.Open();
            OleDbCommand oleDb = new OleDbCommand("insert into para values('" + usertype + "','" + 0 + "')", bağlantı);

            oleDb.ExecuteNonQuery();
            bağlantı.Close();
            MessageBox.Show("kayıt işleminiz gerçekleşti");
            txtad.Clear();
            txtsoyadı.Clear();
            txtkullanıcıad.Clear();
            txtşifre.Clear();
            txttc.Clear();
            txttelefon.Clear();
            txtemail.Clear();
            txtadres.Clear();
            Form_bilgiler yeni = new Form_bilgiler();

            yeni.Show();
            this.Hide();
        }
예제 #2
0
        private void btn_giriş_Click(object sender, EventArgs e)
        {
            bağlantı.Open();
            komut             = new OleDbCommand();
            komut.CommandText = "select * from kullanıcılar where email=@mail and şifre=@parola";
            komut.Connection  = bağlantı;

            komut.Parameters.AddWithValue("@mail", txt_ent_mail.Text);
            komut.Parameters.AddWithValue("@parola", txt_ent_şifre.Text);
            oku = komut.ExecuteReader();
            if (oku.Read())
            {
                usertype = Convert.ToInt16(oku["userID"]);
                Form_bilgiler yeni = new Form_bilgiler();
                yeni.Show();
                this.Hide();
            }
            else if (txt_ent_mail.Text == "admin" && txt_ent_şifre.Text == "1234")
            {
                Form_admin_onay form_Admin_ = new Form_admin_onay();
                form_Admin_.Show();
                this.Hide();
            }
            else
            {
                MessageBox.Show("kullanıcı adı veya şifre hatalı", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            bağlantı.Close();
        }