I'm beginner in oracle database ,want to write simple application to connect to the oracle database,write this code:
OracleConnection conn = new OracleConnection();
conn.ConnectionString = @"Data Source=(DESCRIPTION =(ADDRESS_LIST =(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521)))(CONNECT_DATA =(SERVICE_NAME = behbehzad)))";
try
{
conn.Open();
conn.Close();
MessageBox.Show("Connect Successfull!!");
}
catch (Exception e1)
{
MessageBox.Show(e1.ToString());
}
but when run the application get this error:

How can i solve that?thanks.