Viewing 2 posts - 1 through 2 (of 2 total)
What I ended up having to do was actually:
SqlConnection.ClearAllPools();
Then assign a SqlCommand to drop the table like I was originally doing:
string sqlConn = ""; // your SQL Connection String...
July 2, 2010 at 1:07 pm
#1188396
Well, normally "DROP DATABASE" will also delete the physical files. In my case, I drop all tables first (which succeeds), then try to drop the database (which doesn't).
The variation...
January 14, 2009 at 5:57 pm
#927020