-Replaced Mono.Data.SQLite by System.Data.SQLite(ManagedOnly)

-Added System.Data.SQLite and Sqlite3 into ThirdParty
-Depending of the OS, System.Data.SQLite will look for:
  sqlite3.dll in Windows(Provided with the project)
  libsqlite3.so.0 in Linux(Need to be installed. ie yum install sqlite.i686)
  libsqlite3.dylib in MacOS X(!?)
  (See http://www.mono-project.com/Interop_with_Native_Libraries for more info)
This commit is contained in:
abeloin
2013-12-25 19:40:53 -05:00
parent 68cf16416b
commit 316500dca4
3 changed files with 22 additions and 23 deletions

View File

@@ -1,11 +1,7 @@
using MediaBrowser.Model.Logging;
using System;
using System.Data;
#if __MonoCS__
using Mono.Data.Sqlite;
#else
using System.Data.SQLite;
#endif
using System.IO;
using System.Threading.Tasks;
@@ -140,18 +136,6 @@ namespace MediaBrowser.Server.Implementations.Persistence
logger.Info("Opening {0}", dbPath);
#if __MonoCS__
var connectionstr = new SqliteConnectionStringBuilder
{
PageSize = 4096,
CacheSize = 4096,
SyncMode = SynchronizationModes.Normal,
DataSource = dbPath,
JournalMode = SQLiteJournalModeEnum.Off
};
var connection = new SqliteConnection(connectionstr.ConnectionString);
#else
var connectionstr = new SQLiteConnectionStringBuilder
{
PageSize = 4096,
@@ -162,7 +146,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
};
var connection = new SQLiteConnection(connectionstr.ConnectionString);
#endif
await connection.OpenAsync().ConfigureAwait(false);
return connection;