请解决这个sqlite错误

Please Solve this sqlite error

Caused by: android.database.sqlite.SQLiteException: no such column: Over_the_horizon.mp3 (code 1): , while compiling: insert into musics(song_name,album_name,artist_name,full_path) values(Over_the_horizon.mp3,Samsung,Samsung,a/storage/emulated/0/Samsung/Music/Over_the_horizon.mp3) 

SQL 中的字符串文字用单引号 (') 表示,而您的 values 子句缺失。 添加它们,你应该没问题:

INSERT INTO musics 
(song_name, album_name, artist_name, full_path) 
VALUES ('Over_the_horizon.mp3',
        'Samsung',
        'Samsung',
        'a/storage/emulated/0/Samsung/Music/Over_the_horizon.mp3')