blob: 1b05e8e86004b8d6692c17aab5c7eb78cc225010 (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Common.SQL
{
/// <summary>
/// Represents an SQL command mode.
/// </summary>
public enum RemoteSqlCommandMode
{
/// <summary>
/// Executes the command against the connected local database.
/// </summary>
Local,
/// <summary>
/// Executes the command against the global Twine's database.
/// </summary>
Global,
/// <summary>
/// Executes the command against the connected machine and the global databases.
/// </summary>
Both
}
}
|