首页 | 源码下载 | 编程控件 | 书籍教程 | 应用方案 | 设计素材 | 项目交易 | 开发文档 | 商业源码 | 我的帐号
登陆我的帐号
帐 号:
密 码:
我还不是会员,需要注册!

截止2004年12月16日
本站源码总量(商业源码除外)RAR压缩为 4,206,733 KB。其中免费源码为 1,124,495 KB,会员源码为 3,082,238 KB
C/C++ 129,555 KB
Delphi 1,258,381 KB
Java 120,937 KB
.Net 36,886 KB
PowerBuilder 954,525 KB
Visual Basic 923,454 KB
ASP 259,795 KB
JSP 4,987 KB
其他 94,723 KB

本站是中国频道、中资源、时代互联顶级代理:注册国际域名70元,国内域名130元,各类ASP、PHP、JSP空间8折优惠!
本站承担各类网站制作开发及方案策划,项目经验丰富,欢迎洽谈!

网站动态
关于下载速度慢的问题解答
想免费下载源码吗?
还有众多资源恭候大家免费…
道歉!
关于资源更新的说明
关于下载错误的原因!
源码资源网新版网站投入运…

当前位置:源码资源网首页 > 开发文档首页 > Java >JAVA连接Oracle的代码

JAVA连接Oracle的代码
人气:24 文字大小:     作者:

最新做了一个连接Oracle的代码,要配好环境变量:


ClassPath=.;E:\j2sdk14\lib\tools.jar;E:\oracle\ora90\jdbc\lib\classes12.zip


测试的电脑已经装好Oracle客户端,而且用SQLplus可以连接上。



/*
* This sample shows how to list all the names from the EMP table
*
* It uses the JDBC THIN driver. See the same program in the
* oci8 samples directory to see how to use the other drivers.
*/


// You need to import the java.sql package to use JDBC
import java.sql.*;


class Test
{
public static void main  String args [])
throws SQLException
{
// Load the Oracle JDBC driver
DriverManager.registerDriver new oracle.jdbc.OracleDriver ));
/* try{
Class.forName "oracle.jdbc.driver.OracleDriver");
}catch Exception e){
System.out.println "No Driver!");
}
*/
// Connect to the database
// You must put a database name after the @ sign in the connection URL.
// You can use either the fully specified SQL*net syntax or a short cut
// syntax as <host>:<port>:<sid>. The example uses the short cut syntax.
String url = "jdbc:oracle:thin:@172.28.31.85:1521:YIKATONG";
String userName = "scott";
String password = "tiger";


if  args.length > 0) url = args[0];
if  args.length > 1) userName = args[1];
if  args.length > 2) password = args[2];
System.out.println url);
System.out.println userName);
System.out.println password);
Connection conn =
DriverManager.getConnection  url, userName, password);


// Create a Statement
Statement stmt = conn.createStatement  );


// Select the ENAME column from the EMP table
ResultSet rset = stmt.executeQuery  "select * from Test");


// Iterate through the result and print the employee names
while  rset.next  ))
System.out.println  rset.getString  1));
}
}




 

文章出处:   发表时间:2004-11-18 18:38:47

1条数据记录,分1页显示 上一页 < [1] > 下一页
相关文章  
[源码下载] · comicq源代码
[书籍教程] · VC++ 6.0数据库系统开发实例导航
[书籍教程] · Delphi 7数据库编程学习捷径
[书籍教程] · Delphi百例精解
[书籍教程] · DELPHI综合开发文档

相关评论  
 当前没有评论!
请登陆后再来发表评论!
当前位置:源码资源网首页 > 开发文档首页 > JAVA连接Oracle的代码
会员升级 | 广告服务 | 网站开发 | 联系我们 | 网站动态 | 客户反馈

CodeRes.com 保留所有权利 2004
本站所有资源仅供学习参考,版权归原作者所有,如侵犯了您的权益请与我们联系