my registration application seems to be pulling a SQL Injection when I run it, anyone have any quick fix suggestions for me, I would really prefer to not change everything but to make this able to run for my first project update.
string constring = "datasource=127.0.0.1;port=3306;username=root;password=welcome";
        string Query = "insert into userdatabase.users (userid, email, passone, passtwo, lastname, firstname) values('" + this.userid_txt.Text + "','" + this.email_txt.Text + "','" + this.passone_txt.Text + "','" + this.passtwo_txt.Text + "','" + this.lastname_txt.Text + "','" + this.firstname_txt.Text + "') ;";
        MySqlConnection conDataBase = new MySqlConnection(constring);
        MySqlCommand cmdDataBase = new MySqlCommand(Query, conDataBase);
        MySqlDataReader myReader;
        try
            {
                conDataBase.Open();
                myReader = cmdDataBase.ExecuteReader();
                MessageBox.Show("Welcome to iDSTEM!");
                while (myReader.Read())
             {
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
The error states that:
You have an error in my SQL syntax; check the manual... check syntax near "userdatabase" at line 1
 
     
    