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 852035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:31:37+00:00 2026-05-15T07:31:37+00:00

When a SQL batch returns more than one message from e.g. print statements, then

  • 0

When a SQL batch returns more than one message from e.g. print statements, then I can only retrieve the first one using the ADO connection’s Errors collection. How do I get the rest of the messages?

If I run this script:

Option Explicit
Dim conn
Set conn = CreateObject("ADODB.Connection")
conn.Provider = "SQLOLEDB"
conn.ConnectionString = "Data Source=(local);Integrated Security=SSPI;Initial Catalog=Master"
conn.Open

conn.Execute("print 'Foo'" & vbCrLf & "print 'Bar'" & vbCrLf & "raiserror ('xyz', 10, 127)")

Dim error
For Each error in conn.Errors
    MsgBox error.Description
Next

Then I only get “Foo” back, never “Bar” or “xyz”.

Is there a way to get the remaining messages?

  • 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-05-15T07:31:38+00:00Added an answer on May 15, 2026 at 7:31 am

    I figured it out on my own.

    This works:

    Option Explicit
    Dim conn
    Set conn = CreateObject("ADODB.Connection")
    conn.Provider = "SQLOLEDB"
    conn.ConnectionString = "Data Source=(local);Integrated Security=SSPI;Initial Catalog=Master"
    conn.Open
    
    Dim rs
    Set rs = conn.Execute("print 'Foo'" & vbCrLf & "print 'Bar'" & vbCrLf & "raiserror ('xyz', 10, 127)")
    
    Dim error
    While not (rs is nothing)
        For Each error in conn.Errors
            MsgBox error.Description
        Next
        Set rs = rs.NextRecordSet
    Wend
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When getting a return value from a stored procedure, it only returns the first
In Transact-SQL, a batch is a set of SQL statements submitted together and executed
I'm executing a number of SQL query's as a batch and then getting all
Need a batch script to delete all records in a SQL Server CE database
I am getting java.sql.SQLException: error occurred during batching: batch must be either executed or
I have created a batch file which automatically copy a .sql file to the
I need to import a database into a SQL Server instance using a batch
SQL Server 2005 I have an SQL Function (ftn_GetExampleTable) which returns a table with
Unfortunately, SQL Server can not a handle a parameter list which exceeds 2100 parameters.
I am building up a dataset from SQL server - a stored procedure that

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.