mirror of
https://gitee.com/dotnetchina/MiniExcel.git
synced 2024-12-05 05:17:34 +08:00
17 lines
399 B
C#
17 lines
399 B
C#
/**
|
|
This Class Modified from ExcelDataReader : https://github.com/ExcelDataReader/ExcelDataReader
|
|
**/
|
|
namespace MiniExcelLibs.Tests.Utils
|
|
{
|
|
using System.Data.SQLite;
|
|
|
|
internal static class Db
|
|
{
|
|
internal static SQLiteConnection GetConnection(string connectionString= "Data Source=:memory:")
|
|
{
|
|
return new SQLiteConnection(connectionString);
|
|
}
|
|
}
|
|
|
|
}
|