2013-08-05, 12:42 PM
(This post was last modified: 2013-08-05, 01:06 PM by mvallevand.)
Using npvr.db3 and home.db3 and away.db3 (last good copy of applicable npvr.db3)
The rough code you need for sqlite3 when you return home is
Then when you leave you do something similar with away.db3
Keeping unique common channel numbers is key here This assumes that there are no h264/mpeg2 mismatches for live tv.
Martin
The rough code you need for sqlite3 when you return home is
Code:
attach "home.db3" as home;
update channel_mapping
set tuning =
(select tuning from home.channel_mapping as home
where channel_mapping.channel_source_number = home.channel_source_number);
Then when you leave you do something similar with away.db3
Keeping unique common channel numbers is key here This assumes that there are no h264/mpeg2 mismatches for live tv.
Martin