[Database] Update reference to DatabaseTools

This commit is contained in:
Matt Nadareski
2016-06-12 20:06:38 -07:00
parent d3118357b7
commit aecb856a43
4 changed files with 7 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ namespace SabreTools
{ {
Directory.CreateDirectory(_outroot); Directory.CreateDirectory(_outroot);
} }
DatabaseTools.EnsureDatabase(_dbName, _connectionString); Database.EnsureDatabase(_dbName, _connectionString);
using (SqliteConnection dbc = new SqliteConnection(_connectionString)) using (SqliteConnection dbc = new SqliteConnection(_connectionString))
{ {

View File

@@ -541,7 +541,7 @@ namespace SabreTools
/// <param name="url">Source URL(s)</param> /// <param name="url">Source URL(s)</param>
private static void InitAddSource(string name, string url) private static void InitAddSource(string name, string url)
{ {
if (DatabaseTools.AddSource(name, url, _connectionString)) if (Database.AddSource(name, url, _connectionString))
{ {
_logger.Log("Source " + name + " added!"); _logger.Log("Source " + name + " added!");
} }
@@ -560,7 +560,7 @@ namespace SabreTools
int srcid = -1; int srcid = -1;
if (Int32.TryParse(sourceid, out srcid)) if (Int32.TryParse(sourceid, out srcid))
{ {
if (DatabaseTools.RemoveSource(srcid, _connectionString)) if (Database.RemoveSource(srcid, _connectionString))
{ {
_logger.Log("Source '" + srcid + "' removed!"); _logger.Log("Source '" + srcid + "' removed!");
} }
@@ -582,7 +582,7 @@ namespace SabreTools
/// <param name="system">System name</param> /// <param name="system">System name</param>
private static void InitAddSystem(string manufacturer, string system) private static void InitAddSystem(string manufacturer, string system)
{ {
if (DatabaseTools.AddSystem(manufacturer, system, _connectionString)) if (Database.AddSystem(manufacturer, system, _connectionString))
{ {
_logger.Log("System " + manufacturer + " - " + system + " added!"); _logger.Log("System " + manufacturer + " - " + system + " added!");
} }
@@ -601,7 +601,7 @@ namespace SabreTools
int sysid = -1; int sysid = -1;
if (Int32.TryParse(systemid, out sysid)) if (Int32.TryParse(systemid, out sysid))
{ {
if (DatabaseTools.RemoveSystem(sysid, _connectionString)) if (Database.RemoveSystem(sysid, _connectionString))
{ {
_logger.Log("System '" + sysid + "' removed!"); _logger.Log("System '" + sysid + "' removed!");
} }

View File

@@ -34,7 +34,7 @@ namespace SabreTools
// Perform initial setup and verification // Perform initial setup and verification
logger = new Logger(true, "headerer.log"); logger = new Logger(true, "headerer.log");
logger.Start(); logger.Start();
DatabaseTools.EnsureDatabase(_dbName, _connectionString); Database.EnsureDatabase(_dbName, _connectionString);
Remapping.CreateHeaderSkips(); Remapping.CreateHeaderSkips();
// Credits take precidence over all // Credits take precidence over all

View File

@@ -7,7 +7,7 @@ namespace SabreTools.Helper
/// <summary> /// <summary>
/// All general database operations /// All general database operations
/// </summary> /// </summary>
public class DatabaseTools public class Database
{ {
/// <summary> /// <summary>
/// Ensure that the databse exists and has the proper schema /// Ensure that the databse exists and has the proper schema