我正在使用
Oracle.ManagedDataAccess
连接到本地 Oracle SQL 数据库。
此来源:
OracleConnectionStringBuilder connStr = new();
//fake password and username, but I double checked they're correct.
connStr.UserID = "admin"; //user was created with sqlplus from a command prompt
connStr.Password = "1234";
connStr.DataSource = "localhost:1521/xe";
_conn = new OracleConnection(connStr.ConnectionString);
_conn.Open(); // <- exception here after tens of seconds
我在
Oracle.ManagedDataAccess.Client.OracleException: 'ORA-50000: Connection request timed out'
调用中遇到 Open
异常。
我也尝试过连接到我大学的 iSQLPlus 数据库,但遇到了同样的错误。
在我的本地数据库上,使用 Oracle SQL Developer 连接没有任何问题。
我预计连接显然会成功,但我收到超时错误。
你能解决这个问题吗? 我有同样的问题,但我没有看到真正的解决方案