1- [ assembly: System . CLSCompliantAttribute ( true ) ]
2- [ assembly: System . Runtime . InteropServices . ComVisibleAttribute ( false ) ]
3- [ assembly: System . Runtime . InteropServices . GuidAttribute ( "4f62ae2f-797b-488d-a71e-f27873167fa1" ) ]
4-
1+ [ assembly: System . CLSCompliant ( true ) ]
2+ [ assembly: System . Reflection . AssemblyMetadata ( "RepositoryUrl" , "https://github.com/DbUp/dbup-oracle.git" ) ]
3+ [ assembly: System . Runtime . InteropServices . ComVisible ( false ) ]
4+ [ assembly: System . Runtime . InteropServices . Guid ( "4f62ae2f-797b-488d-a71e-f27873167fa1" ) ]
5+ [ assembly: System . Runtime . Versioning . TargetFramework ( ".NETStandard,Version=v2.1" , FrameworkDisplayName = ".NET Standard 2.1" ) ]
56namespace DbUp . Oracle
67{
7- [ System . ObsoleteAttribute ( ) ]
8- public class OracleCommandReader : DbUp . Support . SqlCommandReader , System . IDisposable
8+ [ System . Obsolete ]
9+ public class OracleCommandReader : DbUp . Support . SqlCommandReader
910 {
1011 public OracleCommandReader ( string sqlText ) { }
1112 protected override bool IsCustomStatement { get ; }
1213 protected override void ReadCustomStatement ( ) { }
1314 }
1415 public class OracleCommandSplitter
1516 {
16- [ System . ObsoleteAttribute ( ) ]
17+ [ System . Obsolete ]
1718 public OracleCommandSplitter ( ) { }
1819 public OracleCommandSplitter ( char delimiter ) { }
1920 public System . Collections . Generic . IEnumerable < string > SplitScriptIntoCommands ( string scriptContents ) { }
2021 }
21- public class OracleConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager , DbUp . Engine . Transactions . IConnectionManager
22+ public class OracleConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager
2223 {
23- [ System . ObsoleteAttribute ( "Use OracleConnectionManager(string, OracleCommandSplitter) and supply an appropriate command splitter instance." ) ]
24+ [ System . Obsolete ( "Use OracleConnectionManager(string, OracleCommandSplitter) and supply an appropri" +
25+ "ate command splitter instance." ) ]
2426 public OracleConnectionManager ( string connectionString ) { }
2527 public OracleConnectionManager ( string connectionString , DbUp . Oracle . OracleCommandSplitter commandSplitter ) { }
2628 public override System . Collections . Generic . IEnumerable < string > SplitScriptIntoCommands ( string scriptContents ) { }
2729 }
28- public class OracleCustomDelimiterCommandReader : DbUp . Support . SqlCommandReader , System . IDisposable
30+ public class OracleCustomDelimiterCommandReader : DbUp . Support . SqlCommandReader
2931 {
3032 public OracleCustomDelimiterCommandReader ( string sqlText , char delimiter ) { }
3133 protected override bool IsCustomStatement { get ; }
@@ -35,20 +37,25 @@ public static class OracleExtensions
3537 {
3638 public static DbUp . Builder . UpgradeEngineBuilder JournalToOracleTable ( this DbUp . Builder . UpgradeEngineBuilder builder , string schema , string table ) { }
3739 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( DbUp . Engine . Transactions . IConnectionManager connectionManager ) { }
38- [ System . ObsoleteAttribute ( "Use OracleDatabaseWithDefaultDelimiter, OracleDatabaseWithSemicolonDelimiter or the OracleDatabase with the delimiter parameter instead, see https://github.com/DbUp/DbUp/pull/335" ) ]
39- public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
4040 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( this DbUp . Builder . SupportedDatabases supported , DbUp . Engine . Transactions . IConnectionManager connectionManager ) { }
41+ [ System . Obsolete ( "Use OracleDatabaseWithDefaultDelimiter, OracleDatabaseWithSemicolonDelimiter or t" +
42+ "he OracleDatabase with the delimiter parameter instead, see https://github.com/D" +
43+ "bUp/DbUp/pull/335" ) ]
44+ public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
4145 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( DbUp . Engine . Transactions . IConnectionManager connectionManager , string schema ) { }
4246 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , char delimiter ) { }
43- [ System . ObsoleteAttribute ( "Use the parameter that takes a delimiter instead, see https://github.com/DbUp/DbUp/pull/335" ) ]
47+ [ System . Obsolete ( "Use the parameter that takes a delimiter instead, see https://github.com/DbUp/DbU" +
48+ "p/pull/335" ) ]
4449 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema ) { }
4550 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema , char delimiter ) { }
46- [ System . ObsoleteAttribute ( "Use OracleDatabaseWithDefaultDelimiter, OracleDatabaseWithSemicolonDelimiter or the OracleDatabase with the delimiter parameter instead, see https://github.com/DbUp/DbUp/pull/335" ) ]
51+ [ System . Obsolete ( "Use OracleDatabaseWithDefaultDelimiter, OracleDatabaseWithSemicolonDelimiter or t" +
52+ "he OracleDatabase with the delimiter parameter instead, see https://github.com/D" +
53+ "bUp/DbUp/pull/335" ) ]
4754 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema , string delimiter ) { }
4855 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabaseWithDefaultDelimiter ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
4956 public static DbUp . Builder . UpgradeEngineBuilder OracleDatabaseWithSemicolonDelimiter ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
5057 }
51- public class OracleObjectParser : DbUp . Support . SqlObjectParser , DbUp . Engine . ISqlObjectParser
58+ public class OracleObjectParser : DbUp . Support . SqlObjectParser
5259 {
5360 public OracleObjectParser ( ) { }
5461 }
@@ -57,14 +64,14 @@ public class OraclePreprocessor : DbUp.Engine.IScriptPreprocessor
5764 public OraclePreprocessor ( ) { }
5865 public string Process ( string contents ) { }
5966 }
60- public class OracleScriptExecutor : DbUp . Support . ScriptExecutor , DbUp . Engine . IScriptExecutor
67+ public class OracleScriptExecutor : DbUp . Support . ScriptExecutor
6168 {
6269 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 ) { }
6370 public override void Execute ( DbUp . Engine . SqlScript script ) { }
6471 protected override void ExecuteCommandsWithinExceptionHandler ( int index , DbUp . Engine . SqlScript script , System . Action executeCommand ) { }
6572 protected override string GetVerifySchemaSql ( string schema ) { }
6673 }
67- public class OracleTableJournal : DbUp . Support . TableJournal , DbUp . Engine . IJournal
74+ public class OracleTableJournal : DbUp . Support . TableJournal
6875 {
6976 public static System . Globalization . CultureInfo English ;
7077 public OracleTableJournal ( System . Func < DbUp . Engine . Transactions . IConnectionManager > connectionManager , System . Func < DbUp . Engine . Output . IUpgradeLog > logger , string schema , string table ) { }
@@ -78,4 +85,4 @@ protected System.Data.IDbCommand GetCreateTableTrigger(System.Func<System.Data.I
7885 protected override string GetInsertJournalEntrySql ( string scriptName , string applied ) { }
7986 protected override string GetJournalEntriesSql ( ) { }
8087 }
81- }
88+ }
0 commit comments