コード例 #1
0
ファイル: Login.cs プロジェクト: alpfu/bikeRent
        private void LoginButton(object sender, EventArgs e)
        {//catalogu değiştir.
            connection = "Server=localhost;port=5432;Database =bikeBookv1;username=postgres;Password=locklock";
            var conn = new NpgsqlConnection(connection);

            conn.Open();
            var cmd = new NpgsqlCommand("select  username,password,usertype from users where username ='******' and password='******';", conn);

            {
                var reader = cmd.ExecuteReader();
                while (reader.Read())
                {
                    username = (String)reader.GetValue(0);
                    password = (String)reader.GetValue(1);
                    usertype = (String)reader.GetValue(2);
                }

                Console.WriteLine(username + "   " + password + "  " + usertype);
                if (username == "" && password == "")
                {
                    MessageBox.Show("username and password must be valid ,try again later");
                }
                else if (usertype == "admin")
                {
                    AdminPanel adminPanel = new AdminPanel(username, password);
                    adminPanel.Show();
                    //  this.Close();
                }
                else if (usertype == "client")
                {
                    ClientPanel clientPanel = new ClientPanel(username, password);
                    clientPanel.Show();
                    // this.Close();
                }
                else
                {
                    MessageBox.Show("user not found.");
                }
            }


            // kullanici admin ise admin panel goruntulenir
            // kullanici musteri ise musteri panel goruntulenir
        }
コード例 #2
0
ファイル: ClientSignin.cs プロジェクト: alpfu/bikeRent
        private void SignButtonClicked(object sender, EventArgs e)
        {
            String connection = "Server=localhost;port=5432;Database =bikeBookv1;username=postgres;Password=locklock";
            var    conn       = new NpgsqlConnection(connection);

            conn.Open();
            username = null;
            fname    = FirstNametextBox.Text;
            lname    = LastNameTextBox.Text;
            password = passwordTextBox.Text;
            if (usernamatextBox.Text == "" || fname == "" || lname == "" || password == "" || emailTextBox.Text == "" || phoneTextBox.Text == "")
            {
                MessageBox.Show("mandatory fields required");
            }
            else
            {
                NpgsqlCommand cmd = new NpgsqlCommand("select  username from users where username ='******';", conn);

                {
                    var reader = cmd.ExecuteReader();
                    while (reader.Read())
                    {
                        username = (String)reader.GetValue(0);
                        Console.WriteLine(username);
                    }
                    conn.Close();
                    Console.WriteLine(username);
                    if ((username != null))// kullanıcı adıın daha önce alınması durumu
                    {
                        usernamatextBox.ForeColor = Color.Red;
                        importantLabel.Text       = "username was took by another person ,please change username";
                    }

                    //alanların uzunluk kontrolü
                    else if (password.Length > 20 || usernamatextBox.Text.Length > 9 || fname.Length > 50 || lname.Length > 50 || password.Length > 20 || emailTextBox.Text.Length > 50 || phoneTextBox.Text.Length > 15)//kullanıcı kaydı yapılır.
                    {
                        MessageBox.Show("length of that field must be like that ;username:9 ,first name 50 ,last name 50 ,password 20 ,email 50 ,phone 15 ");
                    }
                    else if (termRadioButton.Checked.Equals(true)) // user aggreementın kabul edilmasiyle kullanıcı kaydı yapılır.
                    {
                        conn.Open();
                        NpgsqlCommand insertusercmd = new NpgsqlCommand("insert into users values('" + usernamatextBox.Text + "','" + fname + "','" + lname + "','" + password + "','client')", conn);
                        NpgsqlCommand insertClntcmd = new NpgsqlCommand("insert into client values('" + usernamatextBox.Text + "','" + emailTextBox.Text + "','" + phoneTextBox.Text + "');", conn);
                        insertusercmd.ExecuteNonQuery();
                        conn.Close();
                        conn.Open();
                        insertClntcmd.ExecuteNonQuery();
                        conn.Close();
                        MessageBox.Show("Successfully registered ");
                        ClientPanel newClientPanel = new ClientPanel(usernamatextBox.Text, password);
                        newClientPanel.Show();
                        this.Close();
                    }
                    else
                    {
                        MessageBox.Show("user aggrement must be read and accepted to use that system.");
                    }
                    conn.Close();
                }
            }
        }