using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Common.SQL
{
///
/// Represents an SQL command execution mode.
///
///
///
///
/// The following example demonstrates how to set the connected machine's demo state and query for the connected machine's jobs.
///
///
///
///
public enum RemoteSqlCommandMode
{
///
/// Executes the command against the connected local database.
///
Local,
///
/// Executes the command against the global Twine's database.
///
Global,
///
/// Executes the command against the connected machine and the global databases.
///
Both
}
}