Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Using JDBC to get Oracle connection Times error

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

The The Network Adapter could not establish the connection network adapter could not create a connection

As a beginner, this problem has made me look for it many times. Every time I restart the computer, I can get the connection normally. After a while, I don't know what I have done, I will report an error again, and when I use pl/sql, I will log in and the user will not log in for half a day.

The configuration file is as follows:

The statement to get the connection is as follows

Public static Connection getConnection () {

String className = SmbmsProperties.getInstance () .getValue ("jdbc.class")

String user = SmbmsProperties.getInstance () .getValue ("jdbc.user")

String password= SmbmsProperties.getInstance () .getValue (jdbc.password)

String url = SmbmsProperties.getInstance () .getValue ("jdbc.url")

Connection connection=null

Try {

Class.forName (className); / / load driver

Connection=DriverManager.getConnection (url, user, password); / / obtain database connection

} catch (Exception e) {

E.printStackTrace ()

}

Return connection

}

The reason why I have this problem is that I turned on sharing wifi on my computer, which caused my mistake.

It should be a network conflict. Do not turn on the shared wifi after reboot and ok it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report