-2

如何在 asp.net (C#) 中连接 oracle 数据库作为后端?

它的连接字符串是什么?

当我尝试连接时,出现以下错误:

ORA-12154: TNS: 无法解析指定的连接标识符

4

2 回答 2

1

The actual connection string depends on the parameters of your server (ip, instance name, credentials, etc).

Here's a site with several 'example' connection strings for oracle:

http://www.connectionstrings.com/oracle

于 2013-07-07T17:57:29.123 回答
1

要使用 .NET 连接到 Oracle DB,最好的方法是:

  1. 安装 Oracle 客户端
  2. 配置 tnsNames.ora
  3. 将 .net 项目引用到 Oracle.DataAccess.Dll (ODP.NET)
  4. OracleConnection使用对象创建连接

我什至不会讨论其他可能性,因为这是 .net-Ora 连接的黄金标准

于 2013-07-22T19:58:00.677 回答