CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Stored Procedures With SQL Server 6.5

    If I have a stored procedure that doesn't return any records, will the calling program be blocked until the procedure completes ? Please help me find an answer to this question.




  2. #2
    Guest

    Re: Stored Procedures With SQL Server 6.5

    Yes.

    Select * from SomeTable where 1=2

    does not return any record sets either. It is not the database operation that blocks your process, it is the API call which send the SQL query to the DB.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured