0

C ++ Builder XE我使用和创建应用程序ms access 2010

作者:ADOConnection> ADOTable> DataSource> DBGrid

如何收集出现在DBGrid. 我知道使用此代码:

AnsiString tmpText;
tmpText+=ADOTable2->FieldByName("Name")->AsString;

但无法获取其中的所有数据DBGrid

4

1 回答 1

0

例如:

ADOTable1->First(); // go to first record
for(int i = 0; i < ADOTable1->RecordCount; i++){
    // read all columns needed by using ADOTable1->FieldByName("FieldName")->As..
    ADOTable1->Next(); // go to next record
}
于 2014-11-30T16:27:02.350 回答