mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 20:54:58 +00:00
fix: Potential fix for sqlite database locked exception
This commit is contained in:
@@ -32,8 +32,8 @@ namespace ICD.Common.Utils.Sqlite
|
|||||||
/// <param name="path"></param>
|
/// <param name="path"></param>
|
||||||
public static void CreateFile(string path)
|
public static void CreateFile(string path)
|
||||||
{
|
{
|
||||||
IcdFileStream fs = IcdFile.Create(path);
|
using (IcdFileStream fs = IcdFile.Create(path))
|
||||||
fs.Close();
|
fs.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user