我用
ADOCommand1.CommandText:='create table #testtt(test1 char(5),test2 char(10))';
ADOCommand1.Execute;
建立了一个临时表,没有错误提示
但用ADTTable来访问这个表时,却说testtt对象名无效,为什么?
ADOTable1.TableName:='testtt';
ADOTable1.Active:=True;
谢谢