Query XBMC Database File: Get watched episodes?
#1
Hey there.
I am developing an windows application which accesses the XBMC database file.
I want to get all episodes which has been watched. The wiki says, that in the "episode" table, key c08 stands for "watched" .. but it never changes. In fact, the whole db entry for an episode does not change when i mark it watched in XBMC. But(!), the database file was changed (new filetime), so where in the world is this information placed?
Thanks in advance! Smile
Reply
#2
old info. what matters these days is the 'playCount' column in the 'files table'.

select playCount from files join episode on episode.idfile=files.idfile where episode.idepisode=%u
Reply
#3
files table. It's a playcount now.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#4
Jeha! Saved my day, folks! Thanks! Smile
Reply

Logout Mark Read Team Forum Stats Members Help
Query XBMC Database File: Get watched episodes?0