G
Guest
Hi.
Is it possible to embed two sql queries ( or statements, whatever ) in just
one OLEDBCommand object, and execute them at the same time?
Dim t_cmd as new OLEDBCommand
t_cmd.CommandText="SELECT * FROM Sales;DROP TABLE Sales;"
..
..
..
t_adapter.Execute (t_cmd)
Will this code work?
Is it possible to embed two sql queries ( or statements, whatever ) in just
one OLEDBCommand object, and execute them at the same time?
Dim t_cmd as new OLEDBCommand
t_cmd.CommandText="SELECT * FROM Sales;DROP TABLE Sales;"
..
..
..
t_adapter.Execute (t_cmd)
Will this code work?