mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
21 lines
428 B
C#
21 lines
428 B
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.ServiceLayer.BatchParser.ExecutionEngineCode
|
|
{
|
|
[Flags]
|
|
public enum ScriptExecutionResult
|
|
{
|
|
Success = 0x1,
|
|
Failure = 0x2,
|
|
Cancel = 0x4,
|
|
Halted = 0x8,
|
|
All = 0x0F
|
|
}
|
|
|
|
}
|