2010. 9. 13. 02:25
보통 ADOQuery를 사용하여 많은 조회 쿼리를 수행한다.
아래는 ADOQuery를 사용할 때 쓰이는 기본적인 코드 조각이다.
with ADOQuery1 do begin
if Active then Close;
SQL.Clear;
SQL.Text := 'SELECT * FROM tablename';
+ ' WHERE name = :NAME;
Parameters.ParamByName('NAME').Value := 'ojh';
Open;
while not Eof do begin
// FieldByName('title').AsString;
// FieldByName('id').AsInteger;
Next;
end;
Close;
end;
end;
Close;
end;
'Windows Programming > Delphi 6/7' 카테고리의 다른 글
Delphi6/7 디렉토리(폴더) 다이알로그, 폴더속에 있는 파일들 복사하기 (0) | 2010.09.13 |
---|---|
Delphi6/7 ShellAPI unit의 ShellExecute (0) | 2010.09.13 |
Delphi6/7 TADOQuery - Binary 조회 (0) | 2010.09.13 |
Delphi6/7 TDBGrid - Column autoFit Implementation (0) | 2010.09.13 |
Delphi6/7 TDBGrid - Scroll problem (0) | 2010.09.13 |