adoquery only use for query (only select is valid)
if u want to use other sql expression eg:insert, update, drop, create u should use ADOCommand . others is not support.
********use ADOCommand instead ADOQuery*************
eg:        ADOCommand.CommandText:=Memo.Text;//sql expression
           ADOCommand.Prepared:=true;
           ADOCommand.Execute;
           ADOCommand.Prepared:=false;