MySQL Forums
Forum List  »  Delphi

How to execute this query
Posted by: Orhan Dogan
Date: January 17, 2007 07:41AM

I'm using delphi7 and ado.
my commands:

Var
sql:String;
begin
sql:='Insert into table1 (F1,F2,F3) values(1,2,3);';
sql:=sql+'Insert into table2 (F4,F5,F6) values(4,5,6);';
AdoConnection.Execute(sql);
end;

I want single query execute.

I'm running this query in mssql server

Options: ReplyQuote


Subject
Written By
Posted
How to execute this query
January 17, 2007 07:41AM
January 20, 2007 12:10PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.