im new in here so i have a question to ask.. the sql oracle say this error ORA-00917: missing comma . hope have some solution
cmd = new OleDbCommand("INSERT INTO users (Matricule,mot_de_passe,Nom,Prenom) VALUES(?Matricule,?mot_de_passe,?Nom,?Prenom)", con);
cmd.Parameters.AddWithValue("?Matricule", textBox1.Text);
cmd.Parameters.AddWithValue("?mot_de_passe", textBox2.Text);
cmd.Parameters.AddWithValue("?Nom", textBox3.Text);
cmd.Parameters.AddWithValue("?Prenom", textBox4.Text);