struts連線上了資料庫了,但是,怎麼來操作呢?

freefancy發表於2003-09-08
我在struts-config.xml上,已經配置好了連線資料庫了

在action中,使用
javax.sql.DataSource dataSource;
java.sql.Connection conn = null;
Statement stmt = null;
ResultSet rs = null;

try {
dataSource = getDataSource(request);
// dataSource = servlet.findDataSource("ConnPool");
conn = dataSource.getConnection();

// 連線測試

也能連線上,但是,我的疑問是,難道要每次連線資料庫的時候,都要寫上這麼一段?

有沒有寫上一個公共的方法,在struts中,其它的bean或者action,都呼叫一下呀?

還有,運算元據庫的時候,該怎麼寫呀?

例如,增加一個,在哪裡寫?

小弟是剛剛學習struts,大俠們幫幫忙吧

相關文章