Entity Framework: Server did not respond within the specified time out interval

时间:2015-06-26 09:47:36

标签: c# .net oracle entity-framework devart

I am trying to access remote Oracle database using vpn connection. Using Oracle Sql Developer tool I am able to connect the database. But when I use ADO.NET model and Devart dotconnect for Oracle, it gives me error that server did not respond with in specified timeout interval.

enter image description here

Any one has face this issue?

UPDATE: I increases the timeout to 60s from default 15s. Now I am getting error:

ORA-12154: TNS:could not resolve the connect identifier specified

1 个答案:

答案 0 :(得分:2)

第一个问题很平常,服务器没有在规定的时间内响应,增加连接时间应该可以解决问题。为此,只需追加 ;连接超时= 60; (此处以秒为单位)连接字符串。

第二次更新后,Tns未正确解析: 你可以查看:

  1. 执行tnsping(tns ora文件中的DB名称)。看到你不应该得到任何错误,连接应该没问题。

  2. 如果问题仍然存在,请检查注册表中的oracle home是否有正确的路径,以防您有多个客户端。