-
Notifications
You must be signed in to change notification settings - Fork 0
/
Enums.cs
36 lines (35 loc) · 845 Bytes
/
Enums.cs
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
31
32
33
34
35
36
namespace DBTableMover
{
/// <summary>
/// type of data connection currently being used by the program
/// </summary>
public enum currentConnectionType
{
/// <summary>
/// used to denote that the interface is connected to a MSSQL database
/// </summary>
MSSQL,
/// <summary>
/// used to denote that the interface is connected to a MySQL database
/// </summary>
MySQL,
/// <summary>
/// used to denote that the interface is connected to an XML file
/// </summary>
XML
}
/// <summary>
/// types of scripts that can be created
/// </summary>
public enum ScriptType
{
TableStructure,
ValuesOnly,
TableAndValues,
DatabaseTableStructure,
StructureAndValues,
AllStoredProcedures,
StructureProcedure,
StructProcValues
}
}