本文介绍了将C#应用程序与Oracle 10g连接:ORA-12154:TNS:无法解析指定的连接标识符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我是使用数据库的初学者。我试图从c#应用程序访问Oracle10g数据库。但是当我这样做,我得到这个错误:I'm using the following code:string oradb = "Data Source=ORCL;User Id=system;Password=goodbye;";OracleConnection conn = new OracleConnection(oradb); // C#conn.Open();Is there an error in the connection string oradb? 解决方案 Start the Visual Studio, open View menu + Server Explorer.Right mouse click on Data Connection + Add Connection + Select Oracle Databaseserver Name : localhost or name of your machine, set username & password and click on Test Connection to verify the above parameters. Press OK if test is succeeds.From properties windows you can obtain connection String and it should be look a like:Data Source=localhost;Persist Security Info=True;User ID=scott;Password=***********;Unicode=True 这篇关于将C#应用程序与Oracle 10g连接:ORA-12154:TNS:无法解析指定的连接标识符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-01 15:15