Query->Close();
Query->SQL->Clear();
Query->SQL->Add("SELECT *");
Query->SQL->Add("INTO MyTable");
Query->SQL->Add("FROM OriginalTable");
Query->ExecSQL();
It doesn't work!!
Also I put the SQL code into a ADOCommand
if I double click the command in design time it works (put the query into MyTable), but if I execute the command in run time it doesn't work
Why??!!!!!!
Query->SQL->Clear();
Query->SQL->Add("SELECT *");
Query->SQL->Add("INTO MyTable");
Query->SQL->Add("FROM OriginalTable");
Query->ExecSQL();
It doesn't work!!
Also I put the SQL code into a ADOCommand
if I double click the command in design time it works (put the query into MyTable), but if I execute the command in run time it doesn't work
Why??!!!!!!