forked from microsoft/SqlScriptDOM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSqlEngineType.cs
More file actions
30 lines (26 loc) · 784 Bytes
/
SqlEngineType.cs
File metadata and controls
30 lines (26 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//------------------------------------------------------------------------------
// <copyright file="SqlEngineType.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace Microsoft.SqlServer.TransactSql.ScriptDom
{
/// <summary>
/// This enum lists the engine type of SQL Server
/// </summary>
public enum SqlEngineType
{
/// <summary>
/// All engine versions
/// </summary>
All = 0,
/// <summary>
/// SQL Server box
/// </summary>
Standalone = 1,
/// <summary>
/// SQL Azure Database
/// </summary>
SqlAzure = 2,
}
}