通常情况下,DataReader对象在内存中保留()数据。
A. 多行
B. 两行
C. 一行
D. 零行
若把数据集(DataSet对象)中的数据更新到数据源,则应该使用()对象的update方法。
A. Connection
B. Command
C. DataAdapter
DataSet
已知:DataSet data=new DataSet();则删除数据集data中person数据表的第5行数据的方法为()
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);
DataReader对象的()方法用于从查询结果中读取行。
A. Next
B. Read
C. NextResult
D. Write