Using a dbexpress component to connect to a mysql DB. If I want to commands like Insert, Delete and UPDATE I use a query. The question is How can I let the user Write the commands into a Richedit or Memo, what ever is the best. And then load those lines to the queries.sql lines?
Tried:
richeditSQL.Lines.Assign(mysqlQuery.SQL);
mysqlQuery.SQL.Assign(richeditSQL.Lines);
Not working.