--  rigctl -l > file_name  to get the list of supported radios

DROP TABLE radios ;

CREATE TABLE radios (
        RigN		integer,
	Brand 		text,
        Model		text,
        Version		text,
        Status		text
);

COPY radios FROM '/home/pino/GAMBAS/dblog/LOG/radios.db' DELIMITER ',' NULL AS '' ;


GRANT ALL PRIVILEGES ON TABLE radios TO PUBLIC ;

SELECT Model, RigN from radios WHERE Brand = 'Icom' ;
