程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> JavaBean 實例

JavaBean 實例

編輯:關於JAVA

package untitled1;
import java.sql.*;
public class Jsp2Bean {
private String sample = "Start value";
String strDBDtiver="sun.jdbc.odbc.JdbcOdbcDriver";
String strConn ="jdbc:odbc:unititled1";
Connection conn=null;
ResultSet rs = null;
//Access sample property
public String getSample() {
return sample;
}
//Access sample property
public void setSample(String newValue) {
if (newValue!=null) {
sample = newValue;
}
}
public Jsp2Bean(){
try{
Class.forName(strDBDtiver);
}
catch(java.lang.ClassNotFoundException e){
System.out.println("DataBase Open Error : " + e.getMessage());
}
}
public ResultSet exeCuteQuery(String strSQL){
rs=null;
try{
conn = DriverManager.getConnection(strConn);
Statement stmt = conn.createStatement();
rs= stmt.executeQuery(strSQL);
}
catch(java.sql.SQLException ex){
System.out.println("SQL RUN ERROR : " + ex.getMessage());
}
return rs;
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved