mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-30 17:24:37 -05:00
fix decimal datatype handling (#1352)
* Revert "Revert query execution changes (#1341)"
This reverts commit cb290cdbb5.
* fix decimal and money
* timestamp
* fix code and tests
* add sql variant test
This commit is contained in:
@@ -8631,6 +8631,11 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.QueryServiceQueryFailed, message);
|
||||
}
|
||||
|
||||
public static string QueryServiceUnsupportedSqlVariantType(string underlyingType, string columnName)
|
||||
{
|
||||
return Keys.GetString(Keys.QueryServiceUnsupportedSqlVariantType, underlyingType, columnName);
|
||||
}
|
||||
|
||||
public static string QueryServiceSaveAsFail(string fileName, string message)
|
||||
{
|
||||
return Keys.GetString(Keys.QueryServiceSaveAsFail, fileName, message);
|
||||
@@ -9011,6 +9016,9 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string QueryServiceResultSetTooLarge = "QueryServiceResultSetTooLarge";
|
||||
|
||||
|
||||
public const string QueryServiceUnsupportedSqlVariantType = "QueryServiceUnsupportedSqlVariantType";
|
||||
|
||||
|
||||
public const string QueryServiceSaveAsResultSetNotComplete = "QueryServiceSaveAsResultSetNotComplete";
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user