2
2
[ assembly: System . Runtime . InteropServices . ComVisibleAttribute ( false ) ]
3
3
[ assembly: System . Runtime . InteropServices . GuidAttribute ( "9f949414-f078-49bf-b50e-a3859c18fb6e" ) ]
4
4
5
- public static class SQLiteExtensions
5
+ public static class SqliteExtensions
6
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 ) { }
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
10
}
11
- namespace DbUp . SQLite
11
+ namespace DbUp . Sqlite
12
12
{
13
- public class SQLiteConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager , DbUp . Engine . Transactions . IConnectionManager
13
+ public class SqliteConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager , DbUp . Engine . Transactions . IConnectionManager
14
14
{
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 ) { }
17
17
public override System . Collections . Generic . IEnumerable < string > SplitScriptIntoCommands ( string scriptContents ) { }
18
18
}
19
- public class SQLiteObjectParser : DbUp . Support . SqlObjectParser , DbUp . Engine . ISqlObjectParser
19
+ public class SqliteObjectParser : DbUp . Support . SqlObjectParser , DbUp . Engine . ISqlObjectParser
20
20
{
21
- public SQLiteObjectParser ( ) { }
21
+ public SqliteObjectParser ( ) { }
22
22
}
23
- public class SQLitePreprocessor : DbUp . Engine . IScriptPreprocessor
23
+ public class SqlitePreprocessor : DbUp . Engine . IScriptPreprocessor
24
24
{
25
- public SQLitePreprocessor ( ) { }
25
+ public SqlitePreprocessor ( ) { }
26
26
public string Process ( string contents ) { }
27
27
}
28
- public class SQLiteScriptExecutor : DbUp . Support . ScriptExecutor , DbUp . Engine . IScriptExecutor
28
+ public class SqliteScriptExecutor : DbUp . Support . ScriptExecutor , DbUp . Engine . IScriptExecutor
29
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 ) { }
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
31
protected override void ExecuteCommandsWithinExceptionHandler ( int index , DbUp . Engine . SqlScript script , System . Action executeCommand ) { }
32
32
protected override string GetVerifySchemaSql ( string schema ) { }
33
33
}
34
- public class SQLiteTableJournal : DbUp . Support . TableJournal , DbUp . Engine . IJournal
34
+ public class SqliteTableJournal : DbUp . Support . TableJournal , DbUp . Engine . IJournal
35
35
{
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 ) { }
37
37
protected override string CreateSchemaTableSql ( string quotedPrimaryKeyName ) { }
38
38
protected override string DoesTableExistSql ( ) { }
39
39
protected override string GetInsertJournalEntrySql ( string scriptName , string applied ) { }
40
40
protected override string GetJournalEntriesSql ( ) { }
41
41
}
42
42
}
43
- namespace DbUp . SQLite . Helpers
43
+ namespace DbUp . Sqlite . Helpers
44
44
{
45
- public class InMemorySQLiteDatabase : System . IDisposable
45
+ public class InMemorySqliteDatabase : System . IDisposable
46
46
{
47
- public InMemorySQLiteDatabase ( ) { }
47
+ public InMemorySqliteDatabase ( ) { }
48
48
public string ConnectionString { get ; set ; }
49
49
public DbUp . Helpers . AdHocSqlRunner SqlRunner { get ; }
50
50
public void Dispose ( ) { }
@@ -66,10 +66,10 @@ public void Dispose() { }
66
66
public void DoClose ( ) { }
67
67
public void Open ( ) { }
68
68
}
69
- public class TemporarySQLiteDatabase : System . IDisposable
69
+ public class TemporarySqliteDatabase : System . IDisposable
70
70
{
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 ; }
73
73
public DbUp . Helpers . AdHocSqlRunner SqlRunner { get ; }
74
74
public void Dispose ( ) { }
75
75
}
0 commit comments