re: Jolt方式连接TUXEDO 东舟 2007-11-13 10:42
我的联系方式:xu_cruiser@msn.com
re: 我的DBConnection 东舟 2007-02-10 12:04
谢谢 马嘉楠 的批评。
但是调用程序里是这样写的:
DBConnection db = DBConnection.getInstance();
String strTitle = "";
try {
ResultSet rs = db.executeQuery("select name from TB_PAGEFRAME where type = '1'");
while(rs.next()){
strTitle = rs.getString("name");
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
db.close();
}