Search found 2 matches

by paul999
14.12.2005, 10:48
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: TZQuery and multistatements
Replies: 4
Views: 1171

And how about article on this server "The ZeosLib DBOs 6.1.5 - With Delphi 7 and Firebird 1.5" : With Query do Begin Sql.Clear; Sql.Add('DELETE FROM table1;'); Sql.Add('INSERT INTO table1 VALUES (:Val1, :Val2);'); Sql.Add('INSERT INTO table2 VALUES (:Val3, :Val2);'); Sql.Add('UPDATE table3...
by paul999
14.12.2005, 09:52
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: TZQuery and multistatements
Replies: 4
Views: 1171

TZQuery and multistatements

Hello all. I'm using zde6.5.1+delphi7+mysql4.1 and i can't make tzquery do more then 1 statement at a time. I do this: ZQuery1.SQL.Add('INSERT INTO BankPlatez (DOC_NO) VALUES (''1'');'); ZQuery1.SQL.Add('INSERT INTO BankPlatez (DOC_NO) VALUES (''2'');'); ZQuery1.ExecSQL; ang got error. mysql accepts...