實戰JBuilder7+WebLogic7存取MS SQL Server2000(一) (轉)

gugu99發表於2008-05-12
實戰JBuilder7+WebLogic7存取MS SQL Server2000(一) (轉)[@more@]

實戰JBuilder7+LOGIC7存取MS SERVER2000(一)

劉曉巍: to:liuxiaowei2000@sina.com">liuxiaowei2000@sina.com

 :namespace prefix = o ns = "urn:schemas--com::office" />

 

第一次寫文章,希望大家多多捧場,本文完全根據我的個人所寫,如有錯誤,懇請大家指正!

JBuilder7+WebLogic7 的

假設Jbuilder7和WebLogic7完畢,操作為:2000 server(SP2),為: SQLServer2000(SP2)。

 

JBuilder7的配置:

1.  修改環境變數TEMP和TMP 為不帶空格的目錄如:E:winnttemp

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-> Installation Directory設為 JDK的安裝目錄,如:E:/bea/jdk131_02

6.  將Custom->BEA Home Directory設為WebLogic7的Home Director,如:E:/bea

7.  將Custom->ain Directory設為你的域目錄,如:E:/bea/user_projects/mydomain

8.  添好User name, Pass ,Domain name, Server name後,單擊OK退出。

9.  選擇:Tools->Enterprise Setup,單擊頁上的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.  開啟,在位址列中輸入:

3.  輸入名和密碼

4.  在左邊的目錄樹中選中Services->JC->Connection Pools,單擊右側的Configure a new Connection Pool.,輸入以下資訊:

Configuration->General頁:

Name = Connection Pool

URL = jdbc:weblogic:mssqlserver4:northwind@localhost

classname = weblogic.jdbc.mssqlserver4.Driver

Properties : user = sa

   Password = “” 

單擊Create建立連線池。

Targets->Server頁:

將myserver(名稱)移至右側的列表中,但擊單擊Apply

5.  在左邊的目錄樹中選中Services->JDBC->Data s(或者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(" * from employees");

  String line = "";

  while (res.next())

  line = line + res.getString("title")+"n";

  jTextArea1.setText(line);

  con.close();

  }

  catch (Exception ex)

  {

  jTextArea1.setText("error : "+ex.getMessage());

}

雙擊第二個按鈕輸入以下程式碼

  Hashtable ht = new Hashtable();

  ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");

  ht.put(Context.PROVR_URL,"t3://localhost:7001");

 

  try

  {

  Context ctx = new InitialContext(ht);

  DataSource ds = (DataSource)ctx.lookup("SQLServer");

  Connection con = ds.getConnection("system","12345678");//此處是WebLogic7

的域使用者和密碼

  Statement st = con.createStatement();

  ResultSet res = st.executeQuery("select * from employees");

  String line = "";

  while (res.next())

  line = line + res.getString("notes")+"n";

  jTextArea1.setText(line);

  con.close();

  }

  catch (Exception ex)

  {

  jTextArea1.setText("error : "+ex.getMessage());

  }

執行WebLogic7,執行單擊第一個按鈕使用JDBC直接連線SQLServer並獲取資料,單擊第二個按鈕使用DataSource連線SQLServer並獲取資料。

實戰2:Session Bean

實戰3:Entity Bean

  (待續)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10748419/viewspace-1003893/,如需轉載,請註明出處,否則將追究法律責任。

相關文章