Thanks for your replay
i can
using Oracle.DataAccess.Client
and also can use oracleConnection and oracle command
i have discovered the problem
here is the 9i connection string
<add name="ConnectionString1" connectionString="Data Source=orcl;User ID=xxxx; Password=xxxx" providerName="System.Data.OracleClient" />
this works with 9i
in 10g i must include the computer name (server name)
<add name="ConnectionString1" connectionString="Data Source=mas-2009/orcl;User ID=xxxxx; Password=xxx" providerName="System.Data.OracleClient" />
that works with 10g
is there any solution for that
can't i make the connection independant from the computer