~halega/+junk/sqlinstaller

« back to all changes in this revision

Viewing changes to SQLInstaller.Core/Options.cs

  • Committer: sk
  • Date: 2011-09-10 05:32:36 UTC
  • Revision ID: halega@halega.com-20110910053236-1877r3p0k4a64bgx
Tags: 1.2.2
1.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//-----------------------------------------------------------------------
 
2
// <copyright file="Options.cs" company="JHOB Technologies, LLC">
 
3
//     Copyright � JHOB Technologies, LLC. All rights reserved.
 
4
// </copyright>
 
5
// <license>Microsoft Public License</license>
 
6
// <author>Brian Schloz</author>
 
7
//-----------------------------------------------------------------------
 
8
namespace SQLInstaller.Core
 
9
{
 
10
        using System;
 
11
 
 
12
        /// <summary>
 
13
        /// Options enumeration.
 
14
        /// </summary>
 
15
        [Flags]
 
16
        public enum Options
 
17
        {
 
18
                /// <summary>
 
19
                /// No options.
 
20
                /// </summary>
 
21
                None = 0x00,
 
22
 
 
23
                /// <summary>
 
24
                /// Create database (if it does not exist)
 
25
                /// </summary>
 
26
                Create = 0x01,
 
27
 
 
28
                /// <summary>
 
29
                /// Drop database (if it exists)
 
30
                /// </summary>
 
31
                Drop = 0x02,
 
32
 
 
33
                /// <summary>
 
34
                /// Retry the last upgrade/install operation.
 
35
                /// </summary>
 
36
                Retry = 0x04,
 
37
 
 
38
                /// <summary>
 
39
                /// Output all status messages.
 
40
                /// </summary>
 
41
                Verbose = 0x08,
 
42
        }
 
43
}
 
 
b'\\ No newline at end of file'