Enum SqlDatabaseCreateMode
Represents the mode with which to create ISqlDatabase instances.
public enum SqlDatabaseCreateMode : byte
Fields
Commit = 2Specifies that versions that haven't been applied to the database yet should be applied.
DryRun = 1Specifies that versions that haven't been applied to the database yet should be ran in read-only mode. Such versions won't actually be applied to the database itself, but this mode can be useful for debugging created SQL statements that would be executed in Commit mode.
NoChanges = 0Specifies that versions that haven't been applied to the database yet should not be invoked at all.