Merge remote-tracking branch 'origin/ConnectPro_v1.3' into ConnectPro_v1.4

This commit is contained in:
Chris Cameron
2020-08-17 10:15:06 -04:00
3 changed files with 16 additions and 18 deletions

View File

@@ -97,9 +97,9 @@ namespace ICD.Common.Utils.Globalization
private const string SQL_LOCAL_DATABASE_FILE = "CultureInfo.sqlite";
private const string SQL_CONNECTION_STRING_FORMAT =
#if SIMPLSHARP
"Data Source = {0}; Version = 3; ReadOnly = True";
"Data Source={0};Version=3;ReadOnly=True";
#else
"Data Source = {0}";
"Data Source={0}";
#endif
private const string SQL_CMD_SELECT_BY_NAME = "select * from cultureinfo where name = @name collate nocase";
private const string SQL_CMD_SELECT_BY_LCID = "select * from cultureinfo where lcid = @lcid";