Make path searches case insensitive
This commit is contained in:
parent
6c84e8863e
commit
7554aabf90
12
src/db-sql.c
12
src/db-sql.c
|
@ -41,6 +41,7 @@
|
||||||
#include "restart.h"
|
#include "restart.h"
|
||||||
#include "smart-parser.h"
|
#include "smart-parser.h"
|
||||||
#include "plugin.h"
|
#include "plugin.h"
|
||||||
|
#include "conf.h" /* FIXME */
|
||||||
|
|
||||||
#ifdef HAVE_LIBSQLITE
|
#ifdef HAVE_LIBSQLITE
|
||||||
#include "db-sql-sqlite2.h"
|
#include "db-sql-sqlite2.h"
|
||||||
|
@ -1863,9 +1864,16 @@ MP3FILE *db_sql_fetch_path(char **pe, char *path, int index) {
|
||||||
SQL_ROW row;
|
SQL_ROW row;
|
||||||
MP3FILE *pmp3=NULL;
|
MP3FILE *pmp3=NULL;
|
||||||
int err;
|
int err;
|
||||||
|
char *query;
|
||||||
|
|
||||||
|
/* not very portable, but works for sqlite */
|
||||||
|
if(conf_get_int("scanning","case_sensitive",0)) {
|
||||||
|
query="select * from songs where path='%q' and idx=%d";
|
||||||
|
} else {
|
||||||
|
query="select * from songs where upper(path)=upper('%q') and idx=%d";
|
||||||
|
}
|
||||||
|
|
||||||
err=db_sql_fetch_row(pe,&row,"select * from songs where path='%q' "
|
err=db_sql_fetch_row(pe,&row,query,path,index);
|
||||||
"and idx=%d",path,index);
|
|
||||||
if(err != DB_E_SUCCESS) {
|
if(err != DB_E_SUCCESS) {
|
||||||
if(err == DB_E_NOROWS) { /* Override generic error */
|
if(err == DB_E_NOROWS) { /* Override generic error */
|
||||||
if(pe) { free(*pe); };
|
if(pe) { free(*pe); };
|
||||||
|
|
Loading…
Reference in New Issue