|
| 1 | +[assembly: System.CLSCompliantAttribute(true)] |
| 2 | +[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] |
| 3 | +[assembly: System.Runtime.InteropServices.GuidAttribute("9f949414-f078-49bf-b50e-a3859c18fb6e")] |
| 4 | + |
| 5 | +public static class SQLiteExtensions |
| 6 | +{ |
| 7 | + public static DbUp.Builder.UpgradeEngineBuilder JournalToSQLiteTable(this DbUp.Builder.UpgradeEngineBuilder builder, string table) { } |
| 8 | + public static DbUp.Builder.UpgradeEngineBuilder SQLiteDatabase(this DbUp.Builder.SupportedDatabases supported, string connectionString) { } |
| 9 | + public static DbUp.Builder.UpgradeEngineBuilder SQLiteDatabase(this DbUp.Builder.SupportedDatabases supported, DbUp.SQLite.Helpers.SharedConnection sharedConnection) { } |
| 10 | +} |
| 11 | +namespace DbUp.SQLite |
| 12 | +{ |
| 13 | + public class SQLiteConnectionManager : DbUp.Engine.Transactions.DatabaseConnectionManager, DbUp.Engine.Transactions.IConnectionManager |
| 14 | + { |
| 15 | + public SQLiteConnectionManager(string connectionString) { } |
| 16 | + public SQLiteConnectionManager(DbUp.SQLite.Helpers.SharedConnection sharedConnection) { } |
| 17 | + public override System.Collections.Generic.IEnumerable<string> SplitScriptIntoCommands(string scriptContents) { } |
| 18 | + } |
| 19 | + public class SQLiteObjectParser : DbUp.Support.SqlObjectParser, DbUp.Engine.ISqlObjectParser |
| 20 | + { |
| 21 | + public SQLiteObjectParser() { } |
| 22 | + } |
| 23 | + public class SQLitePreprocessor : DbUp.Engine.IScriptPreprocessor |
| 24 | + { |
| 25 | + public SQLitePreprocessor() { } |
| 26 | + public string Process(string contents) { } |
| 27 | + } |
| 28 | + public class SQLiteScriptExecutor : DbUp.Support.ScriptExecutor, DbUp.Engine.IScriptExecutor |
| 29 | + { |
| 30 | + public SQLiteScriptExecutor(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) { } |
| 31 | + protected override void ExecuteCommandsWithinExceptionHandler(int index, DbUp.Engine.SqlScript script, System.Action executeCommand) { } |
| 32 | + protected override string GetVerifySchemaSql(string schema) { } |
| 33 | + } |
| 34 | + public class SQLiteTableJournal : DbUp.Support.TableJournal, DbUp.Engine.IJournal |
| 35 | + { |
| 36 | + public SQLiteTableJournal(System.Func<DbUp.Engine.Transactions.IConnectionManager> connectionManager, System.Func<DbUp.Engine.Output.IUpgradeLog> logger, string table) { } |
| 37 | + protected override string CreateSchemaTableSql(string quotedPrimaryKeyName) { } |
| 38 | + protected override string DoesTableExistSql() { } |
| 39 | + protected override string GetInsertJournalEntrySql(string scriptName, string applied) { } |
| 40 | + protected override string GetJournalEntriesSql() { } |
| 41 | + } |
| 42 | +} |
| 43 | +namespace DbUp.SQLite.Helpers |
| 44 | +{ |
| 45 | + public class InMemorySQLiteDatabase : System.IDisposable |
| 46 | + { |
| 47 | + public InMemorySQLiteDatabase() { } |
| 48 | + public string ConnectionString { get; set; } |
| 49 | + public DbUp.Helpers.AdHocSqlRunner SqlRunner { get; } |
| 50 | + public void Dispose() { } |
| 51 | + public DbUp.Engine.Transactions.IConnectionManager GetConnectionManager() { } |
| 52 | + } |
| 53 | + public class SharedConnection : System.Data.IDbConnection, System.IDisposable |
| 54 | + { |
| 55 | + public SharedConnection(System.Data.IDbConnection dbConnection) { } |
| 56 | + public string ConnectionString { get; set; } |
| 57 | + public int ConnectionTimeout { get; } |
| 58 | + public string Database { get; } |
| 59 | + public System.Data.ConnectionState State { get; } |
| 60 | + public System.Data.IDbTransaction BeginTransaction() { } |
| 61 | + public System.Data.IDbTransaction BeginTransaction(System.Data.IsolationLevel il) { } |
| 62 | + public void ChangeDatabase(string databaseName) { } |
| 63 | + public void Close() { } |
| 64 | + public System.Data.IDbCommand CreateCommand() { } |
| 65 | + public void Dispose() { } |
| 66 | + public void DoClose() { } |
| 67 | + public void Open() { } |
| 68 | + } |
| 69 | + public class TemporarySQLiteDatabase : System.IDisposable |
| 70 | + { |
| 71 | + public TemporarySQLiteDatabase(string name) { } |
| 72 | + public DbUp.SQLite.Helpers.SharedConnection SharedConnection { get; } |
| 73 | + public DbUp.Helpers.AdHocSqlRunner SqlRunner { get; } |
| 74 | + public void Create() { } |
| 75 | + public void Dispose() { } |
| 76 | + } |
| 77 | +} |
0 commit comments