I'm trying to connect my db with my asp.net web form but when i insert this to try the connection i've this error
OleDbConnection con = new OleDbConnection("Provider=OraOLEDB.Oracle;USER ID=C##FABIO;DATA SOURCE=ORCL");
//aggiungi un elemento alla tabella ESAMI
protected void Button1_Click(object sender, EventArgs e) {
con.Open();
OleDbCommand cmd = new OleDbCommand("Insert into ESAMI(CODICE_ESAME,NOME_ESAME,ANAGRAFICA_CODICE_FISCALE) VALUES('"
+ codice_esame_text.Text + "','" + nome_esame_text.Text + "','"
+ codice_fiscale_text.Text + "') WHERE ANAGRAFICA_CODICE_FISCALE = '"
+ codice_fiscale_text.Text + "'",con);
cmd.ExecuteNonQuery();
con.Close();
// ...
}
How can i add the oracle provider?