views:

14

answers:

1

I have a database upgrade tool that is misbehaving. I would like to pause the execution of the application so I can change the database.

I'm thinking a C# wrapper that could pause the process would do the trick. Has anyone ever attempted such a monster?

C# is home, but other languages would be find if they can get the job done.

+1  A: 

Instead of writing code you could simply attach to the process in question with a debugger and try pausing it that way.

Also take a look at this Code Project article. You might be able to use the utility w/o even having to build it. (The author was looking to accomplish the same thing as you.)

Paul Sasik