1、加载驱动
Class.forName("oracle.jdbc.driver.OracleDriver");
2、得到连接
Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@127.0.0.1:1521:数据库","newuser","new123");
3、创建CallableStatement
CallableStatement callS = conn.prepareCall("{call sp_pro3(?,?)}");//sp_pro3为存储过程的名称,问号是参数
4、给?号赋值
callS.setString(1, "SMUTH"); //给第一个问号赋值
callS.setInt(2, 10); //给第二个问号赋值
5、执行
callS.execute();
6、关闭资源
callS.close();
conn.close();
一、JDBC-ODBC桥
String strCon="JDBC:ODBC:odbc桥名称"
二、Oracle8/8i/9i数据库
String strCon="jdbc:oracle:thin:@localhost:1521:数据库名"
三、MS 2000数据库
String strCon=“jdbc:microsoft:sqlserver://localhost:1433; databaseName=实例名”
四、DB2
String strCon=“jdbc:db2://localhost:5000/数据库实例名”
五、informaix
String strCon=“jdbc:informix-sqli://localhost:1533/数据库实例名:informixserver=myserver; user=testuser; password=password”
六、sybase
String strCon="jdbc:sysbase:Tds:localhost:5007/数据库实例名"
七、mysql
String strCon="jdbc:mysql://localhost:3306/数据库实例名"
八、PostgreSQL
String strCon=“jdbc:postgresql://localhost:5432/数据库实例名”