mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-21 09:35:39 -05:00
Added service for model management for machine learning extension (#1138)
* Added service for model management for ml extension
This commit is contained in:
@@ -3,7 +3,10 @@
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
using Microsoft.SqlTools.ServiceLayer.Management;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
namespace Microsoft.SqlTools.ServiceLayer.Utility
|
||||
{
|
||||
@@ -22,5 +25,45 @@ namespace Microsoft.SqlTools.ServiceLayer.Utility
|
||||
string.Compare(databaseName, CommonConstants.ModelDatabaseName, StringComparison.OrdinalIgnoreCase) == 0 ||
|
||||
string.Compare(databaseName, CommonConstants.TempDbDatabaseName, StringComparison.OrdinalIgnoreCase) == 0);
|
||||
}
|
||||
|
||||
public static string AddStringParameterForInsert(string paramValue)
|
||||
{
|
||||
string value = string.IsNullOrWhiteSpace(paramValue) ? paramValue : CUtils.EscapeStringSQuote(paramValue);
|
||||
return $"'{value}'";
|
||||
}
|
||||
|
||||
public static string AddStringParameterForUpdate(string columnName, string paramValue)
|
||||
{
|
||||
string value = string.IsNullOrWhiteSpace(paramValue) ? paramValue : CUtils.EscapeStringSQuote(paramValue);
|
||||
return $"{columnName} = N'{value}'";
|
||||
}
|
||||
|
||||
public static string AddByteArrayParameterForUpdate(string columnName, string paramName, string fileName, Dictionary<string, object> parameters)
|
||||
{
|
||||
byte[] contentBytes;
|
||||
using (var stream = new FileStream(fileName, FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
using (var reader = new BinaryReader(stream))
|
||||
{
|
||||
contentBytes = reader.ReadBytes((int)stream.Length);
|
||||
}
|
||||
}
|
||||
parameters.Add($"{paramName}", contentBytes);
|
||||
return $"{columnName} = @{paramName}";
|
||||
}
|
||||
|
||||
public static string AddByteArrayParameterForInsert(string paramName, string fileName, Dictionary<string, object> parameters)
|
||||
{
|
||||
byte[] contentBytes;
|
||||
using (var stream = new FileStream(fileName, FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
using (var reader = new BinaryReader(stream))
|
||||
{
|
||||
contentBytes = reader.ReadBytes((int)stream.Length);
|
||||
}
|
||||
}
|
||||
parameters.Add($"{paramName}", contentBytes);
|
||||
return $"@{paramName}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user