vote up 0 vote down star

I'm trying to drop a SQL Server database using the following code:

SqlCommand command = new SqlCommand("USE MASTER; ALTER DATABASE @database SET SINGLE_USER WITH ROLLBACK IMMEDIATE; DROP DATABASE @Database", connection);
command.Parameters.AddWithValue("@database", TestingEnvironment.DatabaseName);
command.ExecuteNonQuery();

When I execute it, I get the error:

Incorrect syntax near '@database'. Incorrect syntax near the keyword 'with'. If this statement is a common table expression or an xmlnamespaces clause, the previous statement must be terminated with a semicolon. Incorrect syntax near 'IMMEDIATE'.

What am I doing wrong?

flag

72% accept rate

2 Answers

vote up 4 vote down check

putting it simply the Alter Database command doesn't support parameters as you want it to. you'll have to concat strings here.

link|flag
Mladen, That was the conclusion I came to. Thanks for confirming it. – Sam Nov 10 '08 at 17:38
vote up 0 vote down

Are the Params case sensitive? You have a capital D in the 2nd @Database.

link|flag
Good thought, but actually that doesn't seem to make a difference – Sam Nov 10 '08 at 17:07
And can you add a param twice like that, with one add param? Might want to try using GO instead of ';'... – Mr. Flibble Nov 10 '08 at 17:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.