Installed on the server, look, think about possible to make the synchronization database Kodi and Media portal. Within a single database. If it comes, will be just fine!
I meant that after I put myself, I try to do it myself. And not something that you should do it.
@regeszter: i know it was aked before, but any chance that you will look into MovingPictures & MPTVSeries? My knowledege and time isnt enougth in SQL to make it myself ill think we have "just" to replace the cornerstone DatabaseManager.cs part with an mysql wrapper.
i love the idea to have MP1 with a "REAL" centralized database.
thx
pOpY
The trakt plugin using the Videos Database API to get information about items collected and watched, have you made any changes to public methods that could break?
- We need to test this feature with 3rd-Party MP1 plugins which use the video database.
Fanarthandler too ...The trakt plugin using the Videos Database API to get information about items collected and watched
Nope, FH is accessing dbs directly with SQl as I see not with API.Fanarthandler too ...The trakt plugin using the Videos Database API to get information about items collected and watched
The trakt plugin using the Videos Database API to get information about items collected and watched, have you made any changes to public methods that could break?
- We need to test this feature with 3rd-Party MP1 plugins which use the video database.
strSQL = String.Format("SELECT * FROM path WHERE strPath = '{0}'", strPath);
SQLiteResultSet results = m_db.Execute(strSQL);
if (results.Rows.Count > 0)
{
int lPathId;
Int32.TryParse(DatabaseUtility.Get(results, 0, "idPath"), out lPathId);
return lPathId;
}
var query = (from sql in _connection.paths
where sql.idPath == pathID
select sql).FirstOrDefault<>();
if (query == null)
{
return;
}
string path = query.strPath;
Nope, FH is accessing dbs directly with SQl as I see not with API.
videoDatabaseMovies = new ArrayList();
VideoDatabase.GetMovies(ref videoDatabaseMovies);