填空題()是一個(gè)簡(jiǎn)單數(shù)據(jù)集,用于從數(shù)據(jù)源中檢索只讀、只向前的數(shù)據(jù)流。

您可能感興趣的試卷

你可能感興趣的試題

3.單項(xiàng)選擇題在對(duì)SQL Server數(shù)據(jù)庫(kù)操作時(shí)應(yīng)選用()

A. SQL Server.NET FrameWork數(shù)據(jù)提供程序
B. OLEDB.NET FrameWork數(shù)據(jù)提供程序
C. ODBC.NET FrameWork數(shù)據(jù)提供程序
D. Oracle.NET FrameWork數(shù)據(jù)提供程序

4.單項(xiàng)選擇題DataReader對(duì)象的()方法用于從查詢結(jié)果中讀取行。 

A. Next
B. Read
C. NextResult
D. Write

5.單項(xiàng)選擇題已知:DataSet data=new DataSet();則刪除數(shù)據(jù)集data中person數(shù)據(jù)表的第5行數(shù)據(jù)的方法為()

A. data.Tables["person "].Rows[5].Delete();
B. data.Tables["person "].Rows.Delete(5);
C. data.Tables["person "].Rows[4].Delete();
D. data.Tables["person "].Rows[].Delete(4);