2018-07-12 Fred Gleason <fredg@paravelsystems.com>

* Cleaned up SQL quieries in 'lib/' ensure UTF-8 compatibility.
This commit is contained in:
Fred Gleason
2018-07-12 13:47:20 -04:00
parent bc2ada9b22
commit 363dbb7878
67 changed files with 1617 additions and 2040 deletions

View File

@@ -65,10 +65,10 @@ bool RDReport::ExportSpinCount(const QString &filename,const QDate &startdate,
// Generate Spin Counts
//
sql=QString("select ")+
"CART_NUMBER,"+
"TITLE,"+
"ARTIST,"+
"ALBUM,LABEL "+
"CART_NUMBER,"+ // 00
"TITLE,"+ // 01
"ARTIST,"+ // 02
"ALBUM,LABEL "+ // 03
"from ELR_LINES where "+
"SERVICE_NAME=\""+RDEscapeString(mixtable)+"\" "+
"order by TITLE";