RowSet 是 ResultSet 對(duì)象的包裝器。它可以與數(shù)據(jù)庫(kù)連接、斷開(kāi)并且可以序列化。它通過(guò)設(shè)置屬性來(lái)維護(hù) JavaBean 組件。您可以通過(guò)網(wǎng)絡(luò)傳遞 RowSet 對(duì)象。默認(rèn)情況下,RowSet 對(duì)象是可滾動(dòng)和可更新的,它用于使 ResultSet 對(duì)象可滾動(dòng)和可更新。
您可以使用
RowSetProvider.newFactory( ).createJdbcRowSet() 方法。
示例
假設(shè)我們?cè)跀?shù)據(jù)庫(kù)中有一個(gè)名為 dataset 的表:
+--------------+-----------+ | mobile_brand | unit_sale | +--------------+-----------+ | Iphone | 3000 | | Samsung | 4000 | | Nokia | 5000 | | Vivo | 1500 | | Oppo | 900 | | MI | 6400 | | MotoG | 4360 | | Lenovo | 4100 | | RedMi | 4000 | | MotoG | 4360 | | OnePlus | 6334 | +--------------+-----------+
登錄后復(fù)制
以下 JDBC 示例創(chuàng)建一個(gè) RowSet 對(duì)象,并使用該對(duì)象檢索名為 dataset 的表的內(nèi)容:
import java.sql.DriverManager; import javax.sql.RowSet; import javax.sql.rowset.RowSetProvider; public class RowSetExample { public static void main(String args[]) throws Exception { //Registering the Driver DriverManager.registerDriver(new com.mysql.jdbc.Driver()); //Creating the RowSet object RowSet rowSet = RowSetProvider.newFactory().createJdbcRowSet(); //Setting the URL String mysqlUrl = "jdbc:mysql://localhost/TestDB"; rowSet.setUrl(mysqlUrl); //Setting the user name rowSet.setUsername("root"); //Setting the password rowSet.setPassword("password"); //Setting the query/command rowSet.setCommand("select * from Dataset"); System.out.println("Contents of the table"); while(rowSet.next()) { System.out.print("Brand: "+rowSet.getString(1)+", "); System.out.print("Sale: "+rowSet.getString(2)); System.out.println(""); } } }
登錄后復(fù)制
輸出
Contents of the table Brand: Iphone, Sale: 3000 Brand: Samsung, Sale: 4000 Brand: Nokia, Sale: 5000 Brand: Vivo, Sale: 1500 Brand: Oppo, Sale: 900 Brand: MI, Sale: 6400 Brand: MotoG, Sale: 4360 Brand: Lenovo, Sale: 4100 Brand: RedMi, Sale: 4000 Brand: MotoG, Sale: 4360 Brand: OnePlus, Sale: 6334
登錄后復(fù)制
以上就是使用 JDBC 程序解釋什么是 RowSet 對(duì)象?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!