Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8313377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T20:28:18+00:00 2026-06-08T20:28:18+00:00

If I have a program that runs a stored procedure that takes about 5

  • 0

If I have a program that runs a stored procedure that takes about 5 minutes to run, for example:

Database.RunJob(); -- takes 5 mins to complete
MessageBox.Show("Hi");

Question – is the message box going to show “Hi” BEFORE Database.RunJob() is complete?

If it does, how do I make sure a query is complete before proceeding to the next line of code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T20:28:20+00:00Added an answer on June 8, 2026 at 8:28 pm

    Insufficient information to give meaningful answer.

    The best answer we can give is: it depends on whether Database.RunJob() is synchronous or asynchronous.

    • If .RunJob is synchronous (that is, run on the current thread), then
      MessageBox.Show will not run until the .RunJob finishes.

    • If it’s asynchronous, spawning other thread(s) to do the work, then
      MessageBosh will execute immediately, before the job is finished.

    Since you didn’t show what RunJob actually does, we can’t answer any more precisely.


    Let’s suppose .RunJob is asynchronous. If the designer of that method was worth his salt, he would return something from that method; ideally a Task<T>.

    If he returns a Task, you could do write your C# 5 code like this:

    async void RunJobAndShowSuccessMessage()
    {
         await Database.RunJob();
         MessageBox.Show("Hi, the job is done!");
    }
    

    Let’s suppose .RunJob is synchronous, running only on the current thread. This means you probably don’t want to run it on the UI thread; doing so will cause your application UI to freeze for 5 minutes.

    To avoid that scenario, let’s run the database job on a different thread ourselves, so that the application UI remains responsive:

    async void RunJobAndShowSuccessMessage()
    {
        // Spawn a task to run in the background.
        await Task.Factory.Start(() => Database.RunJob());
        MessageBox.Show("Hi, the job is done!");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a program that autoruns with Windows scheduler. This program runs a stored
I have program that runs fast enough. I want to see the number of
I have a program that runs in a few threads. The main thread shares
I have a program that runs correctly if I start it manually. However, if
I have a Java program that runs many small simulations. It runs a genetic
I have a Java program that runs on my Ubuntu 10.04 machine and, without
So I have a Linux program that runs in a while(true) loop, which waits
I have to write a daemon program that constantly runs in the background and
Greetings I have a program that creates multiples instances of a class, runs the
I have a python script that runs a program, which generates few .exe files

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.