java、jdbc操作oracle数据库问题、急啊 求助啊!!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java、jdbc操作oracle数据库问题、急啊 求助啊!!相关的知识,希望对你有一定的参考价值。
求助啊 用户名密码没错 sid没错 pl/sql正常连接 但是java jdbc连接就连接错误
网上试了些方法 无解、、谁能帮助下
还有 jdbc 驱动也换了 几个 都不行
下面是 myeclipse 控制台报错 (数据库是oracle 11G 系统windows7)
java.sql.SQLException: Io 异常: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=186646784)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
大哥们帮帮忙吧、我都纠结死了!
import java.sql.Connection;
import java.sql.DriverManager;
public class UtilDbForOracle
public static Connection getConnection()
try
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url = "jdbc:oracle:thin:@192.168.0.10:1521:ora920";
String username = "shihuan";
String password = "zznode";
Connection conn = DriverManager.getConnection(url, username, password);
// System.out.println(conn + "------return conn");
return conn;
catch (Exception e)
System.out.println(e.getMessage());
return null;
----------------------------------------------------------------------
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class DBOperaRule
private Connection conn = null;
// private Statement stmt = null;
private PreparedStatement pstmt = null;
private ResultSet rs = null;
private boolean hadErrors = false;
//创建数据库连接
public void createConnection()
conn = UtilDbForOracle.getConnection();
//发起事务
public void beginTransaction()
try
conn.setAutoCommit(false);
catch (SQLException e)
e.printStackTrace();
//执行事务
public void commitTransaction() throws SQLException
if(!hadErrors)
conn.commit();
else
conn.rollback();
hadErrors = false ;
hadErrors = false ;
conn.setAutoCommit(true);
//标记出错
public void errorOccur()
hadErrors = true ;
//执行插入、删除和更新操作
synchronized public void execute(String sql) throws SQLException
this.pstmt = conn.prepareStatement(sql);
if(pstmt != null)
pstmt.executeUpdate(sql);
else
Log log = LogFactory.getLog("mylog");
log.error("数据库插入数据出错");
//执行查询操作
synchronized public ResultSet read(String sql) throws SQLException
this.pstmt = conn.prepareStatement(sql);
// Statement stmt = conn.createStatement();
if(pstmt != null)
// if(stmt != null)
ResultSet tmp = null ;
tmp = pstmt.executeQuery(sql);
// tmp = stmt.executeQuery(sql);
//下面为打印数据表中的字段名称
// ResultSetMetaData md = tmp.getMetaData();
// for(int i=1; i<=md.getColumnCount(); i++)
// System.out.println(md.getColumnName(i));
//
//循环打印数据库中的值
// while(tmp.next())
// System.out.println("tmp是否在最后一行:" + tmp.isLast());
// System.out.println("row: " + tmp.getRow());
// System.out.println(tmp.getString(1) + " --> " + tmp.getString(2));
//
return tmp;
else
return null;
//执行查询个数操作
synchronized public int readCount(String sql) throws SQLException
this.pstmt = conn.prepareStatement(sql);
int nCount = 0;
try
if(pstmt != null)
ResultSet tmp = null;
tmp = pstmt.executeQuery(sql);
if(tmp != null && tmp.next())
nCount = tmp.getInt(1);
else
nCount = 0;
catch(SQLException e)
nCount = 0;
return nCount;
//创建数据库连接
/*
public boolean createConnection()
try
conn = UtilDbForOracle.getConnection();
conn.setAutoCommit(false);
catch(SQLException e)
System.out.println("createConnectionError!");
System.out.println(e.getMessage());
return false;
return true;
*/
//进行数据库增,删除,更新操作
/*
public boolean executeUpdate(String sql)
if(conn == null)
createConnection();
try
stmt = con.createStatement();
int iCount = stmt.executeUpdate(sql);
System.out.println("操作成功,操作影响的记录数:" + String.valueOf(iCount));
catch(SQLException e)
System.out.println("executeUpdateError!");
System.out.println(e.getMessage());
return false;
return true;
*/
/*
public boolean executeUpdateBatch(List list)
if(conn == null) createConnection();
try
stmt = conn.createStatement();
for(int i = 0; i < list.size(); ++i)
stmt.addBatch((String) list.get(i));
int i[] = stmt.executeBatch();
System.out.println("操作成功,操作影响的记录数:" + i.length);
catch(SQLException e)
System.out.println("executeUpdateBatchError!");
System.out.println(e.getMessage());
return false;
return true;
*/
//进行数据库查询操作
/*
public ResultSet executeQuery(String sql)
if(conn == null) createConnection();
try
stmt = conn.createStatement();
rs = stmt.executeQuery(sql);
catch(SQLException e)
System.out.println("executeQueryError!");
System.out.println(e.getMessage());
return null;
return rs;
*/
/*
public List executeQueryForList(String s) throws SQLException
ResultSet rs = this.executeQuery(s);
List list = new ArrayList();
HashMap hash;
String tmp = null;
int cols = rs.getMetaData().getColumnCount();
while(rs.next())
hash = new HashMap();
for(int i = 1; i <= cols; i++)
tmp = rs.getString(i);
if(tmp == null)
tmp = "";
hash.put(rs.getMetaData().getColumnName(i).toLowerCase(), tmp);
list.add(hash);
hash = null;
return list;
*/
/*
public HashMap executeQueryForMap(String s) throws SQLException
ResultSet rs = this.executeQuery(s);
HashMap hash = new HashMap();
String tmp = null;
int cols = rs.getMetaData().getColumnCount();
while(rs.next())
hash = new HashMap();
for(int i = 1; i <= cols; i++)
tmp = rs.getString(i);
if(tmp == null)
tmp = "";
hash.put(rs.getMetaData().getColumnName(i).toLowerCase(), tmp);
return hash;
*/
/*
public ResultSet executeQueryForPage(String sql)
if(conn == null) createConnection();
try
stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
rs = stmt.executeQuery(sql);
catch(SQLException e)
System.out.println("executeQueryError!");
System.out.println(e.getMessage());
return null;
return rs;
*/
//对数据库操作进行提交
/*
public boolean commit()
try
conn.commit();
catch(SQLException e)
System.out.println("commitError!");
System.out.println(e.getMessage());
return false;
return true;
*/
//关闭数据库连接
public void closeDBConnection()
if(conn != null)
try
// stmt.close();
pstmt.close();
conn.close();
catch(SQLException e)
System.out.println("closeDBConnectionError!");
e.printStackTrace();
finally
try
// stmt.close();
pstmt.close();
catch(SQLException e)
e.printStackTrace();
conn = null;
参考技术A 请楼主注意一下几点
第一,服务是否开启(包括监听等)
第二,Oracle驱动包是否加入lib下
第三,检查服务名,用户名和密码是否正确
第四,查看oracle配置文件
修改listener.ora文件
原listener.ora文件:
# listener.ora Network Configuration File: D:/oracle/product/10.1.0/Db_4/network/admin/listener.ora
# Generated by Oracle configuration tools.
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = D:/oracle/product/10.1.0/Db_4)
(PROGRAM = extproc)
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
)
)
)
修改后的文件:
---------------------------------------------------------------------------------------
# listener.ora Network Configuration File: D:/oracle/product/10.1.0/Db_4/network/admin/listener.ora
# Generated by Oracle configuration tools.
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = D:/oracle/product/10.1.0/Db_4)
(PROGRAM = extproc)
)
(SID_DESC =
(GLOBAL_DBNAME = orcl)
(ORACLE_HOME = D:/oracle/product/10.1.0/Db_4)
(SID_NAME = orcl)
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
)
)
)本回答被提问者采纳 参考技术B 直接写: localhost:1521:orcl 试一下。追问
不行
参考技术C 数据库的实例名可能不是orcl追问是 我查看了的
追答那你的数据库有没有配置监听程序呢?
追问有啊 昨天都还能用、今天突然测试下jdbc就错了!!
追答本地数据库?
追问是 、能详聊吗 我QQ 313356518
JDBC连接Oracle
数据库的操作是当前系统开发必不可少的开发部分之一,尤其是在现在的大数据时代,数据库尤为重要。但是你真的懂得Java与数据库是怎么连接的么?
先给大家一个数据库连接的简单实例:
- package com.java.dbtest;
- import java.sql.Connection;
- import java.sql.DriverManager;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- public class TestConnection implements DBTest{
- public void SelectUser(){
- //设定数据库驱动,数据库连接地址、端口、名称,用户名,密码
- String driverName="oracle.jdbc.driver.OracleDriver";
- String url="jdbc:oracle:thin:@localhost:1521:BJPOWERNODE"; //test为数据库名称,1521为连接数据库的默认端口
- String user="system"; //aa为用户名
- String password="bjpowernode"; //123为密码
- PreparedStatement pstmt = null;
- ResultSet rs = null;
- //数据库连接对象
- Connection conn = null;
- try {
- //反射Oracle数据库驱动程序类
- Class.forName(driverName);
- //获取数据库连接
- conn = DriverManager.getConnection(url, user, password);
- //输出数据库连接
- System.out.println(conn);
- //定制sql命令
- String sql = "select * from t_user where user_id = ?";
- //创建该连接下的PreparedStatement对象
- pstmt = conn.prepareStatement(sql);
- //传递第一个参数值 root,代替第一个问号
- pstmt.setString(1, "root");
- //执行查询语句,将数据保存到ResultSet对象中
- rs = pstmt.executeQuery();
- //将指针移到下一行,判断rs中是否有数据
- if(rs.next()){
- //输出查询结果
- System.out.println("查询到名为【" + rs.getString("user_id") + "】的信息,其密码为:" + rs.getString("password"));
- }else{
- //输出查询结果
- System.out.println("未查询到用户名为【" + rs.getString("user_id") + "】的信息");
- }
- } catch (ClassNotFoundException e) {
- e.printStackTrace();
- } catch (SQLException e) {
- e.printStackTrace();
- }finally{
- try{
- if(rs != null){
- rs.close();
- }
- if(pstmt != null){
- pstmt.close();
- }
- if(conn != null){
- conn.close();
- }
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- }
- public static void main(String[] args){
- new TestConnection().SelectUser();
- }
- }
在main函数中,右键,选择“Run as”=>"Java Application",就会运行该程序段,在Console中,可以看到运行结果,如果给出一串类似于“[email protected]”这样的字符串,就说明你连接成功了。运行结果如图:
下面我们来简单解剖一下这段程序。
这段程序是Java连接oracle数据库的实例,采用jdbc来完成连接数据库的操作,所以需要引入ojdbc14.jar。在操作前,首先得先得到数据库驱动类的对象,通过驱动对象拿到数据库连接对象。其中Class.forName(driverName)就是应用类反射机制,加载驱动程序的。DriverManager 类是 JDBC 的管理层,作用于用户和驱动程序之间。它跟踪可用的驱动程序,并在数据库和相应驱动程序之间建立连接。一般只需要在类中直接使用方法DriverManager.getConnection,即可建立与数据库的连接
PreparedStatement 接口继承Statement,是用来执行数据库操作的类。PreparedStatement在多次调用时的效率要比Statement高很多,所以很多人都主张以PreparedStatement代替Statement。在接下来的博文中,会详细介绍一下这点《深入 理解 Statement 和 PreparedStatement》。PreparedStatement可以看做.net中的Command的类。
ResultSet 接口在很多语言中都出现过,它主要来存放查询到的数据。每次查询到数据后,Java语言中通常使用next()方法来读取数据。
以上是关于java、jdbc操作oracle数据库问题、急啊 求助啊!!的主要内容,如果未能解决你的问题,请参考以下文章
oracle针对truncate截断表之后要如何恢复数据?急啊!