1234567891011121314151617 |
- using SQLite;
- using System;
- using System.IO;
- namespace Vinno.vCloud.Disk.Database
- {
- public class SqliteConnection
- {
- private static readonly string SqlConnection = Path.Combine(Environment.CurrentDirectory, "DiskFilesDB.s3db");
- public static DbHelper GetHelper()
- {
- DbHelper dbHelper = new DbHelper();
- dbHelper.OnInitialize(SqlConnection);
- return dbHelper;
- }
- }
- }
|