Delphi Programming Tutorial #21 - SQL Part Three
Loading...
5,818
Uploader Comments (codegearguru)
see all
All Comments (6)
-
thank you so much Sir I really appreciate all this great videos that you have here in youtube, god bless you.
please put as much you can from what you know when you have time, this help us a lot.
-
When did you imput the Execute button and what's the difference between them in the code?
-
Very useful. Im learning database programming in Delphi at the moment and any tutorial is very helpful.
Thanks for this.
-
thanks...the tutorial is very helpful and is not as boring and lenghty like the other sql tutorials
Loading...
the code for execute button pls
samoe022 1 year ago
@samoe022 Something like (off the top of my head):
To Open a Query
Query1.Close;
Query1.SQL.Text := Memo1.Lines.Text;
Query1.Open;
To Execute a Query:
Query1.ExecSQL(Memo1.Lines.Text);
codegearguru 1 year ago
Thanks, I try to keep them short but still full of good content. I still have quite a lot to cover which I should probably get around to doing at some stage.
codegearguru 4 years ago