(04-23-2018, 11:56 AM)rikardo1979 Wrote:(04-23-2018, 11:18 AM)Tim Curtis Wrote: To update the column that contains the station url:
Code:sqlite3 /var/local/www/db/moode-sqlite3.db "update cfg_radio set station='http://......' where name='the_name_of_the_station'"
-Tim
Nice one ;
Thanks
or if you know the ID of your entry:
Code:
sqlite3 /var/local/www/db/moode-sqlite3.db "update cfg_radio set station='http://....' where id=123"
Hendrik-Jan