DataSet.Tables[].Rows[][]的用法详细解析
程序员文章站
2024-02-28 12:46:10
dataset.tables[0].rows[0][1]表示dataset中第一张表(因为tables[0]就是第一张表的意思)中第一行(rows[0][])
第二列(r...
dataset.tables[0].rows[0][1]表示dataset中第一张表(因为tables[0]就是第一张表的意思)中第一行(rows[0][])
第二列(rows[][1])的数据。
dataset.tables["tablename"]是指定获取特定的表名。如果dataset只有一张表,则为dataset.tables[0].