你好,欢迎来到电脑编程技巧与维护杂志社! 杂志社简介广告服务读者反馈编程社区  
合订本订阅
 
 
您的位置:技术专栏 / Linux开发
实战JBuilder7+WebLogic7存取SQL Server2000(1)
 
第一次写文章,希望大家多多捧场,本文完全根据我的个人经验所写,如有错误,恳请大家指正!
  
  JBuilder7+WebLogic7 的配置
  假设Jbuilder7和WebLogic7安装完毕,操作系统为:windows2000 server(SP2),数据库为: SQLServer2000(SP2)。
  
  
  
  JBuilder7的配置:
  
  1. 修改环境变量TEMP和TMP 为不带空格的目录如:E:\winnt\temp
  
  2. 启动Jbuilder7,选择:Tools->Configure Servers
  
  3. 选中左侧的Weblogic Application Server 6.x+,选中右边的Enable Server
  
  4. 将General->Home Directory设为WebLogic7的Home Directory如:E:/bea/weblogic700/server,正常的话Jbuilder7将自动为你添好其他的项。
  
  5. 将Custom->JDK Installation Directory设为 JDK的安装目录,如:E:/bea/jdk131_02
  
  6. 将Custom->BEA Home Directory设为WebLogic7的Home Director,如:E:/bea
  
  7. 将Custom->Domain Directory设为你的域目录,如:E:/bea/user_projects/mydomain
  
  8. 添好User name, Password ,Domain name, Server name后,单击OK退出。
  
  9. 选择:Tools->Enterprise Setup,单击CORBA页上的New, 按下表填写相应信息:
  
  Name for this configuration = WelLogic 7.0
  
  Path for ORB Tools = E:/bea/weblogic700/server
  
  Library for Projects = WebLogic 6.x+ Deploy
  
  IDL compiler command = idlj.exe
  
  Commnad option for output directory = E:\CORBAOutput(任意目录,不要有空格)
  
  单击OK退出。
  
  10.选择Project->Default Project properties
  
  在Path页的Required libraries中将会看到WebLogic 6.x+ Client和WebLogic 6.x+ Deploy两项,如果没有,请检查以上步骤是否正确。
  
  11.选择Server页,单击Single services for all service in project
  
  在下拉列表中选择WebLogic Application Server 6.x+,但击OK退出,配置完毕。
  
  
  
  WebLogic7的配置:
  
  1. 启动WebLogic7
  
  2. 打开IE6,在地址栏中输入:http://localhost:7001/console
  
  3. 输入用户名和密码
  
  4. 在左边的目录树中选中Services->JDBC->Connection Pools,单击右侧的Configure a new JDBC Connection Pool.,输入以下信息:
  
  Configuration->General页:
  
  Name = SQL Server Connection Pool
  
  URL = jdbc:weblogic:mssqlserver4:northwind@localhost
  
  Driver classname = weblogic.jdbc.mssqlserver4.Driver
  
  Properties : user = sa
  
  Password = “” <- sa的密码
  
  单击Create建立连接池。
  
  Targets->Server页:
  
  将myserver(服务器名称)移至右侧的列表中,但击单击Apply
  
  5. 在左边的目录树中选中Services->JDBC->Data Sources(或者TXData Sources),单击右侧的Configure a new JDBC Connection Pool.,输入以下信息:
  
  Configuration->General页:
  
  Name = SQLServer Tx Data Source
  
  JNDI Name = SQLServer
  
  Pool Name = SQL Server Connection Pool
  
  选中Emulate Two-Phase Commit for non-XA Driver和Row Prefetch Enabled
  
  单击Create建立数据源。
  
  Targets->Server页:
  
  将myserver(服务器名称)移至右侧的列表中,但击单击Apply,配置完毕。
  
  实战1:连接SQLServer2000
  1. 打开JBuilder7选择File->New project
  
  在Name栏中输入SQLServerDemo,Directory栏中输入存放路径(不要有空格),其他不变,单击Finish。
  
  2. 选择File->New,选择General->Application,单击OK。
  
  第一步,第二步和第三步都不用更改,直接Finish即可。
  
  3. 回到JBuilder7的集成开发环境中,单击右侧的Designer页设计窗体,在窗体中放入一个JscrollPane 和JtextArea 及三个按钮,双击第一个按钮输入以下代码:
  
  try
  
  {
  
  Class.forName("weblogic.jdbc.mssqlserver4.Driver");
  
  Connection con = DriverManager.getConnection("jdbc:weblogic:mssqlserver4:northwind@localhost","sa","");//此处根据你的SQLServer帐户而定。
  
  Statement st = con.createStatement();
  
  ResultSet res = st.executeQuery("select * from employees");
  
  String line = "";
  
  while (res.next())
  
  line = line + res.getString("title")+"";
  
  jTextArea1.setText(line);
  
  con.close();
  
  }
  
 (编辑:aniston)
  推荐精品文章

·2024年12月目录 
·2024年11月目录 
·2024年10月目录 
·2024年9月目录 
·2024年8月目录 
·2024年7月目录 
·2024年6月目录 
·2024年5月目录 
·2024年4月目录 
·2024年3月目录 
·2024年2月目录 
·2024年1月目录
·2023年12月目录
·2023年11月目录

  联系方式
TEL:010-82561037
Fax: 010-82561614
QQ: 100164630
Mail:gaojian@comprg.com.cn

  友情链接
 
Copyright 2001-2010, www.comprg.com.cn, All Rights Reserved
京ICP备14022230号-1,电话/传真:010-82561037 82561614 ,Mail:gaojian@comprg.com.cn
地址:北京市海淀区远大路20号宝蓝大厦E座704,邮编:100089