2024-09-26 20:34:16 +00:00
|
|
|
using Microsoft.Data.Sqlite;
|
|
|
|
|
|
2024-10-02 21:20:34 +00:00
|
|
|
namespace BotSharp.Plugin.ExcelHandler.Helpers.Sqlite;
|
2024-09-26 20:34:16 +00:00
|
|
|
|
2024-10-02 21:20:34 +00:00
|
|
|
public interface ISqliteDbHelpers
|
2024-09-26 20:34:16 +00:00
|
|
|
{
|
|
|
|
|
SqliteConnection GetPhysicalDbConnection();
|
|
|
|
|
SqliteConnection GetInMemoryDbConnection();
|
|
|
|
|
}
|