简体   繁体   English

使用ASP.NET将错误连接到远程Oracle XE数据库

[英]Connecting Error to Remote Oracle XE database using ASP.NET

I have installed Oracle XE on my Development machine and it is working fine. 我已经在开发计算机上安装了Oracle XE,并且运行正常。

Then I installed Oracle XE client on my Test machine which is also working fine and I can access Development PC database from Browser. 然后,我在测试计算机上安装了Oracle XE客户端,它也可以正常工作,并且可以从浏览器访问Development PC数据库。

Now, I want to create an ASP.Net application which can access that Oracle XE database. 现在,我想创建一个可以访问该Oracle XE数据库的ASP.Net应用程序。 I tried it too, but it always shows me an error on my TEST machine to connect database to the Development Machine using ASP.Net. 我也尝试过,但是它总是在我的TEST计算机上显示一个错误,该错误使用ASP.Net将数据库连接到开发计算机。

Here is my code for ASP.Net application: 这是我的ASP.Net应用程序代码:

protected void Page_Load(object sender, EventArgs e)
        {
            string connectionString = GetConnectionString();

            OracleConnection connection = new OracleConnection(connectionString);
                connection.Open();
                Label1.Text = "State: " + connection.State;
                Label1.Text =  "ConnectionString: " + connection.ConnectionString;

                OracleCommand command = connection.CreateCommand();
                string sql = "SELECT * FROM Users";
                command.CommandText = sql;
                OracleDataReader reader = command.ExecuteReader();
                while (reader.Read())
                {
                    string myField = (string)reader["nID"];
                    Console.WriteLine(myField);
                }

        }

        static private string GetConnectionString()
        {
            // To avoid storing the connection string in your code, 
            // you can retrieve it from a configuration file. 
            return "User Id=System;Password=admin;Data Source=(DESCRIPTION=" +
                    "(ADDRESS=(PROTOCOL=TCP)(HOST=myServerAddress)(PORT=1521))" +
                    "(CONNECT_DATA=(SERVICE_NAME=)));";
        }

make sure the oracle listener opened. 确保打开了oracle监听器。

ps -ef | grep ls
oracle    3773     1  0 May24 ?        00:00:00 /usr/local/oracle/product/10.2.0.1.0/bin/tnslsnr LISTENER -inherit

to start this listener 开始这个听众

[root@rce-dev2 ~]# su  - oracle
-bash-3.2$ cd $ORACLE_HOME
-bash-3.2$ cd bin
-bash-3.2$ ls *ls*
-bash-3.2$ lsnrctl

LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 25-MAY-2012 11:53:10

Copyright (c) 1991, 2005, Oracle.  All rights reserved.

Welcome to LSNRCTL, type "help" for information.

LSNRCTL> start

Starting /usr/local/oracle/product/10.2.0.1.0/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 10.2.0.1.0 - Production

System parameter file is /usr/local/oracle/product/10.2.0.1.0/network/admin/listener.ora

Log messages written to /usr/local/oracle/product/10.2.0.1.0/network/log/listener.log

Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rce-dev2.microlink.com.my)(PORT=1521)))

Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))


Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=rce-dev2.microlink.com.my)(PORT=1521)))

STATUS of the LISTENER

------------------------

Alias                     LISTENER

Version                   TNSLSNR for Linux: Version 10.2.0.1.0 - Production

Start Date                25-MAY-2012 11:53:54

Uptime                    0 days 0 hr. 0 min. 0 sec

Trace Level               off

Security                  ON: Local OS Authentication

SNMP                      OFF

Listener Parameter File   /usr/local/oracle/product/10.2.0.1.0/network/admin/listener.ora

Listener Log File         /usr/local/oracle/product/10.2.0.1.0/network/log/listener.log

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rce-dev2.microlink.com.my)(PORT=1521)))

  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))

Services Summary...

Service "PLSExtProc" has 1 instance(s).

  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...

The command completed successfully

you can try this one 你可以试试这个

"User Id=System;Password=admin;Data Source=(DESCRIPTION=" + 
                    "(ADDRESS=(PROTOCOL=TCP)(HOST=myServerAddress)(PORT=1521))" + 
                    "(CONNECT_DATA=(SID=NETBDS)));";*

Don't you need a service name to connect to in your connection string? 您不需要连接字符串中的服务名称吗? Eg, 例如,

return "User Id=System;Password=admin;Data Source=(DESCRIPTION=" +
                    "(ADDRESS=(PROTOCOL=TCP)(HOST=myServerAddress)(PORT=1521))" +
                    "(CONNECT_DATA=(SERVICE_NAME=myDBServiceName)));";

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM