- December 6, 2007
- 432
- 14
- Home Country
- Netherlands
- Thread starter
- #11
Please use this at your own risk!
The SQL query, in the correct database ('tvlibrary'?), for changing the name in a channel is:
UPDATE channel SET name = '<NAME>' WHERE idChannel = '<CHANNEL_NUM>'
For <NAME> you use the name you want to give the channel (like NL1 or BBC1) and for <CHANNEL_NUM> the idChannel number of the row you like the name changed.
To view the content of the CHANNEL TABLE you enter the following query:
SELECT * FROM channel
Good luck!
Richard
Thanks, will try tonight.