Hi
I'm trying to export my tag data into a MySQL database, I have a script but its not doing the escaping on the path (I think I need double \ for each directory) and if the filename has ' sign it breaks it completely.
Is there anyway of doing this escaping automatically as part of the export from mp3tag? Current export file below;
Thanks in advanace
$filename(sql.txt,utf-8)
$loop(%_title%)INSERT INTO mixed_in_key_data '('track_title, artist, album, track_length, year, genre, bpm, initial_key, energy_level, folder_path ')' VALUES '('"%title%", "%artist%", "%album%", "%_length_seconds%", "%year%", "%genre%", "%BPM%", "%INITIALKEY%", "%ENERGYLEVEL%", "%_path%"')';
$loopend()