mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 18:28:19 +00:00
building connection string using SQLiteConnectionStringBuilder
This commit is contained in:
parent
e03e2c46d6
commit
a37ccf1d94
1 changed files with 7 additions and 1 deletions
|
@ -50,7 +50,13 @@ namespace NzbDrone.Core.Datastore
|
||||||
|
|
||||||
private string GetConnectionString(string dbPath)
|
private string GetConnectionString(string dbPath)
|
||||||
{
|
{
|
||||||
return String.Format("Data Source={0};Version=3;", dbPath);
|
var connectionBuilder = new SQLiteConnectionStringBuilder();
|
||||||
|
|
||||||
|
connectionBuilder.DataSource = dbPath;
|
||||||
|
connectionBuilder.CacheSize = (int)-10.Megabytes();
|
||||||
|
connectionBuilder.DateTimeKind = DateTimeKind.Utc;
|
||||||
|
|
||||||
|
return connectionBuilder.ConnectionString;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue