using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; using SQLite; using NadekoBot.Classes._DataModels; namespace NadekoBot.Classes { class DBHandler { private static readonly DBHandler _instance = new DBHandler(); public static DBHandler Instance => _instance; private string _filePath { get; } = "data/nadekobot.sqlite"; static DBHandler() { } public DBHandler() { using (var _conn = new SQLiteConnection(_filePath)) { _conn.CreateTable(); _conn.CreateTable(); _conn.CreateTable(); _conn.CreateTable(); _conn.CreateTable(); } } internal void InsertData(T o) where T : IDataModel { using (var _conn = new SQLiteConnection(_filePath)) { _conn.Insert(o, typeof(T)); } } internal void InsertMany(T objects) where T : IEnumerable { using (var _conn = new SQLiteConnection(_filePath)) { _conn.InsertAll(objects); } } internal void UpdateData(T o) where T : IDataModel { using (var _conn = new SQLiteConnection(_filePath)) { _conn.Update(o, typeof(T)); } } internal List GetAllRows() where T : IDataModel, new() { using (var _conn = new SQLiteConnection(_filePath)) { return _conn.Table().Where(t => true).ToList(); } } internal T Delete(int Id) where T : IDataModel, new() { using (var _conn = new SQLiteConnection(_filePath)) { var found = _conn.Table().Where(t => t.Id == Id).FirstOrDefault(); if (found != null) _conn.Delete(found.Id); return found; } } /// /// Updates an existing object or creates a new one /// internal void Save(T o) where T : IDataModel, new() { using (var _conn = new SQLiteConnection(_filePath)) { var found = _conn.Table().Where(t => t.Id == o.Id).FirstOrDefault(); if (found == null) _conn.Insert(o, typeof(T)); else _conn.Update(o, typeof(T)); } } } }