ADO:
var
  List: TStringList;
begin
  List:=TStringList.Create;
  try
    ADOConnection.GetTableNames(List, True);
    if List.IndexOf('TableNaem')=-1 then
      //不存在
    else
      //存在
  finally
    List.Free
  end
end 

相关文章:

  • 2022-12-23
  • 2022-01-18
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
  • 2021-07-14
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案