A.java.sql.DriverManagger B.java.sql.Connection C.java.sql.Statement D.java.sql.Result E.java.sql.CallableStatement
A.CallableStatement類用于調(diào)用數(shù)據(jù)庫中的存儲過程 B.PreparedStatment類可以讓數(shù)據(jù)庫預(yù)先編譯SQL語句 C.CallableStatement類繼承了PreparedStatement類 D.PreparedStatement并沒有提高訪問數(shù)據(jù)庫的速度
A.我們可以使用Class.forName或者DriverManager.registerDriver來注冊給定的驅(qū)動driver B.PrepareStatement對象繼承了Statement接口,但是訪問數(shù)據(jù)庫的速度并沒有Statement對象快 C.Connection對象代表了和某一個數(shù)據(jù)源的連接 D.ResultSet對象負責(zé)處理數(shù)據(jù)結(jié)果集對象