SqlCommand and multiple SQL statements

  • Thread starter Thread starter =?ISO-8859-1?Q?Arne_Vajh=F8j?=
  • Start date Start date
?

=?ISO-8859-1?Q?Arne_Vajh=F8j?=

Is the capability of System.Data.SqlClient.SqlCommand to
execute more than one SQL statement (two SQL statements
in CommandText separated by semicolon and just one
Execute call) a supported feature that we can expect
to continue to work in the future ?

Arne
 
SqlClient maps to SQL Server functionality, so as long as SQL Server
continues to support multiple commands, SqlClient will :-)

--Mary
 
Back
Top