.
저의 경우는 ADOConnection을 사용했는데요. 거기에 보면
TableName을 가져오는 메서드가 있더군요.
procedure GetAccessTableNames( poTableNames : TStringList );
begin
with ADOConnection1 do
begin
if Connected = FALSE then
EXIT;
poTableNames := TStringList.Create;
GetTableNames( poTableNames );
end;
end;
이렇게 하면 되던데... ^^;;
.
|