* Update database entries if inotify catches a file CLOSE_WRITE and the modify time is newer than the last recorded time in the database.

This commit is contained in:
Justin Maggard
2009-10-23 02:38:42 +00:00
parent 590f0761f4
commit 0f0d22c2f5
4 changed files with 55 additions and 39 deletions

View File

@ -628,7 +628,8 @@ CreateDatabase(void)
"DLNA_PN TEXT, "
"MIME TEXT, "
"ALBUM_ART INTEGER DEFAULT 0, "
"DISC INTEGER"
"DISC INTEGER, "
"TIMESTAMP INTEGER"
")");
if( ret != SQLITE_OK )
goto sql_failed;