22[ assembly: System . Runtime . InteropServices . ComVisibleAttribute ( false ) ]
33[ assembly: System . Runtime . InteropServices . GuidAttribute ( "9f949414-f078-49bf-b50e-a3859c18fb6e" ) ]
44
5- public static class SQLiteExtensions
5+ public static class SqliteExtensions
66{
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 ) { }
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 ) { }
1010}
11- namespace DbUp . SQLite
11+ namespace DbUp . Sqlite
1212{
13- public class SQLiteConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager , DbUp . Engine . Transactions . IConnectionManager
13+ public class SqliteConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager , DbUp . Engine . Transactions . IConnectionManager
1414 {
15- public SQLiteConnectionManager ( string connectionString ) { }
16- public SQLiteConnectionManager ( DbUp . SQLite . Helpers . SharedConnection sharedConnection ) { }
15+ public SqliteConnectionManager ( string connectionString ) { }
16+ public SqliteConnectionManager ( DbUp . Sqlite . Helpers . SharedConnection sharedConnection ) { }
1717 public override System . Collections . Generic . IEnumerable < string > SplitScriptIntoCommands ( string scriptContents ) { }
1818 }
19- public class SQLiteObjectParser : DbUp . Support . SqlObjectParser , DbUp . Engine . ISqlObjectParser
19+ public class SqliteObjectParser : DbUp . Support . SqlObjectParser , DbUp . Engine . ISqlObjectParser
2020 {
21- public SQLiteObjectParser ( ) { }
21+ public SqliteObjectParser ( ) { }
2222 }
23- public class SQLitePreprocessor : DbUp . Engine . IScriptPreprocessor
23+ public class SqlitePreprocessor : DbUp . Engine . IScriptPreprocessor
2424 {
25- public SQLitePreprocessor ( ) { }
25+ public SqlitePreprocessor ( ) { }
2626 public string Process ( string contents ) { }
2727 }
28- public class SQLiteScriptExecutor : DbUp . Support . ScriptExecutor , DbUp . Engine . IScriptExecutor
28+ public class SqliteScriptExecutor : DbUp . Support . ScriptExecutor , DbUp . Engine . IScriptExecutor
2929 {
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 ) { }
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 ) { }
3131 protected override void ExecuteCommandsWithinExceptionHandler ( int index , DbUp . Engine . SqlScript script , System . Action executeCommand ) { }
3232 protected override string GetVerifySchemaSql ( string schema ) { }
3333 }
34- public class SQLiteTableJournal : DbUp . Support . TableJournal , DbUp . Engine . IJournal
34+ public class SqliteTableJournal : DbUp . Support . TableJournal , DbUp . Engine . IJournal
3535 {
36- public SQLiteTableJournal ( System . Func < DbUp . Engine . Transactions . IConnectionManager > connectionManager , System . Func < DbUp . Engine . Output . IUpgradeLog > logger , string table ) { }
36+ public SqliteTableJournal ( System . Func < DbUp . Engine . Transactions . IConnectionManager > connectionManager , System . Func < DbUp . Engine . Output . IUpgradeLog > logger , string table ) { }
3737 protected override string CreateSchemaTableSql ( string quotedPrimaryKeyName ) { }
3838 protected override string DoesTableExistSql ( ) { }
3939 protected override string GetInsertJournalEntrySql ( string scriptName , string applied ) { }
4040 protected override string GetJournalEntriesSql ( ) { }
4141 }
4242}
43- namespace DbUp . SQLite . Helpers
43+ namespace DbUp . Sqlite . Helpers
4444{
45- public class InMemorySQLiteDatabase : System . IDisposable
45+ public class InMemorySqliteDatabase : System . IDisposable
4646 {
47- public InMemorySQLiteDatabase ( ) { }
47+ public InMemorySqliteDatabase ( ) { }
4848 public string ConnectionString { get ; set ; }
4949 public DbUp . Helpers . AdHocSqlRunner SqlRunner { get ; }
5050 public void Dispose ( ) { }
@@ -66,10 +66,10 @@ public void Dispose() { }
6666 public void DoClose ( ) { }
6767 public void Open ( ) { }
6868 }
69- public class TemporarySQLiteDatabase : System . IDisposable
69+ public class TemporarySqliteDatabase : System . IDisposable
7070 {
71- public TemporarySQLiteDatabase ( string name ) { }
72- public DbUp . SQLite . Helpers . SharedConnection SharedConnection { get ; }
71+ public TemporarySqliteDatabase ( string name ) { }
72+ public DbUp . Sqlite . Helpers . SharedConnection SharedConnection { get ; }
7373 public DbUp . Helpers . AdHocSqlRunner SqlRunner { get ; }
7474 public void Dispose ( ) { }
7575 }
0 commit comments