SQL_Query(string SQL)
bu fonksiyonda String yerine sqlcommand kullanmalısın

SqlCommand cmd = new SqlCommand("Insert into Users(UserMail) values(@userMail)"); 
cmd.Parameters.Add("@userMail",txtUserMail.Text);
core.SQL_Query(cmd);