|
Query->Close();
Query->SQL->Clear();
if(ADOConnection1->Connected == false) ADOConnection1->Connected = true;
Query->SQL->Add("select no1 from test where no='10'");
Query->Open();
Edit1->Text = Query->RecordCount;
이렇게 줬는데요 제가 원하는건 Query->FieldByName("no1")->AsString; 에 해당하는 모든 값들을 배열이나 포인터에 저장을 하고 싶습니다.
그 방법을 좀 알려주세요 ㅠㅠ
|