Handle connection exceptions and add error callback (#126)

This commit is contained in:
Sharon Ravindran
2016-10-31 11:25:51 -07:00
committed by GitHub
parent 69bbb652da
commit 29b7854ec1
3 changed files with 41 additions and 1 deletions

View File

@@ -21,6 +21,11 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
/// Summaries of the result sets that were returned with the query
/// </summary>
public BatchSummary[] BatchSummaries { get; set; }
/// <summary>
/// Error message, if any
/// </summary>
public string Message { get; set; }
}
public class QueryExecuteCompleteEvent