mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-28 01:25:44 -05:00
Adds a execute and return result message (#383)
* inital request * refactored query execution failure callback to take exception * added failure callback to execute and return * added test for query execute and return * updated params * removed dead code * addressed feedback; added multiple active result set support; updated tests * addessed feedback and added testing and errors and verification * change <= to == * changed name of trashQ to removedQuery
This commit is contained in:
@@ -245,6 +245,22 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string QueryServiceResultSetHasNoResults
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.QueryServiceResultSetHasNoResults);
|
||||
}
|
||||
}
|
||||
|
||||
public static string QueryServiceResultSetTooLarge
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.QueryServiceResultSetTooLarge);
|
||||
}
|
||||
}
|
||||
|
||||
public static string QueryServiceSaveAsResultSetNotComplete
|
||||
{
|
||||
get
|
||||
@@ -3468,6 +3484,12 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string QueryServiceResultSetAddNoRows = "QueryServiceResultSetAddNoRows";
|
||||
|
||||
|
||||
public const string QueryServiceResultSetHasNoResults = "QueryServiceResultSetHasNoResults";
|
||||
|
||||
|
||||
public const string QueryServiceResultSetTooLarge = "QueryServiceResultSetTooLarge";
|
||||
|
||||
|
||||
public const string QueryServiceSaveAsResultSetNotComplete = "QueryServiceSaveAsResultSetNotComplete";
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user