Java 几个对象详细汉语解释?
在包下创建类:BaseDao 代码如下:
protected Connection con = null;
protected PreparedStatement pst = null;
protected ResultSet rs = null;
protected String sql = null;
编写打开方法:
public void open(){
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","tiger","tiger");
} catch (Exception e) {
e.printStackTrace();
}
}
编写关闭方法:(倒着关闭)
public void close(){
try {
if (rs!=null) {
rs.close();
rs = null;
}
if (pst!=null) {
pst.close();
pst = null;
}
if (con!=null) {
con.close();
con = null;
}
} catch (Exception e) {
e.printStackTrace();
}
}
每一步的详细汉语解释 麻烦了?
[解决办法]
学习软件开发的,英语不要求太好也要差不多吧。看汉语解释有时候会把意思理解的更远。
Connection 连接
PreparedStatement 预编译的一个statement(不知道这个词翻译成什么好)
ResultSet 结果集合
sql 这个肯定知道吧。就是经常写的sql语句