mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 17:23:27 -05:00
* Move unused forked code to external directory * Fix SLN build errors * Add back resource provider core since it's referenced by main resource provider project * Update PackageProjects step of pipeline
27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.SqlTools.CoreServices.Utility
|
|
{
|
|
public class DatabaseUtils
|
|
{
|
|
/// <summary>
|
|
/// Check if the database is a system database
|
|
/// </summary>
|
|
/// <param name="databaseName">the name of database</param>
|
|
/// <returns>return true if the database is a system database</returns>
|
|
public static bool IsSystemDatabaseConnection(string databaseName)
|
|
{
|
|
return (string.IsNullOrWhiteSpace(databaseName) ||
|
|
string.Compare(databaseName, CommonConstants.MasterDatabaseName, StringComparison.OrdinalIgnoreCase) == 0 ||
|
|
string.Compare(databaseName, CommonConstants.MsdbDatabaseName, StringComparison.OrdinalIgnoreCase) == 0 ||
|
|
string.Compare(databaseName, CommonConstants.ModelDatabaseName, StringComparison.OrdinalIgnoreCase) == 0 ||
|
|
string.Compare(databaseName, CommonConstants.TempDbDatabaseName, StringComparison.OrdinalIgnoreCase) == 0);
|
|
}
|
|
}
|
|
}
|