|
| 1 | + |
| 2 | +namespace DbUp.Oracle |
| 3 | +{ |
| 4 | + [System.ObsoleteAttribute()] |
| 5 | + public class OracleCommandReader : DbUp.Support.SqlCommandReader, System.IDisposable |
| 6 | + { |
| 7 | + public OracleCommandReader(string sqlText) { } |
| 8 | + protected override bool IsCustomStatement { get; } |
| 9 | + protected override void ReadCustomStatement() { } |
| 10 | + } |
| 11 | + public class OracleCommandSplitter |
| 12 | + { |
| 13 | + [System.ObsoleteAttribute()] |
| 14 | + public OracleCommandSplitter() { } |
| 15 | + public OracleCommandSplitter(char delimiter) { } |
| 16 | + public System.Collections.Generic.IEnumerable<string> SplitScriptIntoCommands(string scriptContents) { } |
| 17 | + } |
| 18 | + public class OracleConnectionManager : DbUp.Engine.Transactions.DatabaseConnectionManager, DbUp.Engine.Transactions.IConnectionManager |
| 19 | + { |
| 20 | + [System.ObsoleteAttribute("Use OracleConnectionManager(string, OracleCommandSplitter) and supply an appropriate command splitter instance.")] |
| 21 | + public OracleConnectionManager(string connectionString) { } |
| 22 | + public OracleConnectionManager(string connectionString, DbUp.Oracle.OracleCommandSplitter commandSplitter) { } |
| 23 | + public override System.Collections.Generic.IEnumerable<string> SplitScriptIntoCommands(string scriptContents) { } |
| 24 | + } |
| 25 | + public class OracleCustomDelimiterCommandReader : DbUp.Support.SqlCommandReader, System.IDisposable |
| 26 | + { |
| 27 | + public OracleCustomDelimiterCommandReader(string sqlText, char delimiter) { } |
| 28 | + protected override bool IsCustomStatement { get; } |
| 29 | + protected override void ReadCustomStatement() { } |
| 30 | + } |
| 31 | + public static class OracleExtensions |
| 32 | + { |
| 33 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(DbUp.Engine.Transactions.IConnectionManager connectionManager) { } |
| 34 | + [System.ObsoleteAttribute("Use OracleDatabaseWithDefaultDelimiter, OracleDatabaseWithSemicolonDelimiter or the OracleDatabase with the delimiter parameter instead, see https://github.com/DbUp/DbUp/pull/335")] |
| 35 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(this DbUp.Builder.SupportedDatabases supported, string connectionString) { } |
| 36 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(this DbUp.Builder.SupportedDatabases supported, DbUp.Engine.Transactions.IConnectionManager connectionManager) { } |
| 37 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(DbUp.Engine.Transactions.IConnectionManager connectionManager, string schema) { } |
| 38 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(this DbUp.Builder.SupportedDatabases supported, string connectionString, char delimiter) { } |
| 39 | + [System.ObsoleteAttribute("Use the parameter that takes a delimiter instead, see https://github.com/DbUp/DbUp/pull/335")] |
| 40 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(this DbUp.Builder.SupportedDatabases supported, string connectionString, string schema) { } |
| 41 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(this DbUp.Builder.SupportedDatabases supported, string connectionString, string schema, char delimiter) { } |
| 42 | + [System.ObsoleteAttribute("Use OracleDatabaseWithDefaultDelimiter, OracleDatabaseWithSemicolonDelimiter or the OracleDatabase with the delimiter parameter instead, see https://github.com/DbUp/DbUp/pull/335")] |
| 43 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabase(this DbUp.Builder.SupportedDatabases supported, string connectionString, string schema, string delimiter) { } |
| 44 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabaseWithDefaultDelimiter(this DbUp.Builder.SupportedDatabases supported, string connectionString) { } |
| 45 | + public static DbUp.Builder.UpgradeEngineBuilder OracleDatabaseWithSemicolonDelimiter(this DbUp.Builder.SupportedDatabases supported, string connectionString) { } |
| 46 | + } |
| 47 | + public class OracleObjectParser : DbUp.Support.SqlObjectParser, DbUp.Engine.ISqlObjectParser |
| 48 | + { |
| 49 | + public OracleObjectParser() { } |
| 50 | + } |
| 51 | + public class OraclePreprocessor : DbUp.Engine.IScriptPreprocessor |
| 52 | + { |
| 53 | + public OraclePreprocessor() { } |
| 54 | + public string Process(string contents) { } |
| 55 | + } |
| 56 | + public class OracleScriptExecutor : DbUp.Support.ScriptExecutor, DbUp.Engine.IScriptExecutor |
| 57 | + { |
| 58 | + public OracleScriptExecutor(System.Func<DbUp.Engine.Transactions.IConnectionManager> connectionManagerFactory, System.Func<DbUp.Engine.Output.IUpgradeLog> log, string schema, System.Func<bool> variablesEnabled, System.Collections.Generic.IEnumerable<DbUp.Engine.IScriptPreprocessor> scriptPreprocessors, System.Func<DbUp.Engine.IJournal> journalFactory) { } |
| 59 | + public override void Execute(DbUp.Engine.SqlScript script) { } |
| 60 | + protected override void ExecuteCommandsWithinExceptionHandler(int index, DbUp.Engine.SqlScript script, System.Action executeCommand) { } |
| 61 | + protected override string GetVerifySchemaSql(string schema) { } |
| 62 | + } |
| 63 | + public class OracleTableJournal : DbUp.Support.TableJournal, DbUp.Engine.IJournal |
| 64 | + { |
| 65 | + public static System.Globalization.CultureInfo English; |
| 66 | + public OracleTableJournal(System.Func<DbUp.Engine.Transactions.IConnectionManager> connectionManager, System.Func<DbUp.Engine.Output.IUpgradeLog> logger, string schema, string table) { } |
| 67 | + protected string CreateSchemaTableSequenceSql() { } |
| 68 | + protected override string CreateSchemaTableSql(string quotedPrimaryKeyName) { } |
| 69 | + protected string CreateSchemaTableTriggerSql() { } |
| 70 | + protected override string DoesTableExistSql() { } |
| 71 | + public override void EnsureTableExistsAndIsLatestVersion(System.Func<System.Data.IDbCommand> dbCommandFactory) { } |
| 72 | + protected System.Data.IDbCommand GetCreateTableSequence(System.Func<System.Data.IDbCommand> dbCommandFactory) { } |
| 73 | + protected System.Data.IDbCommand GetCreateTableTrigger(System.Func<System.Data.IDbCommand> dbCommandFactory) { } |
| 74 | + protected override string GetInsertJournalEntrySql(string scriptName, string applied) { } |
| 75 | + protected override string GetJournalEntriesSql() { } |
| 76 | + } |
| 77 | +} |
0 commit comments