399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
|
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
|
+
-
-
+
+
+
|
}
#else
caseSensitive = 1; /* Unix */
#endif
caseSensitive = db_get_boolean("case-sensitive",caseSensitive);
}
if( !caseSensitive ){
db_must_be_within_tree();
db_multi_exec(
"CREATE INDEX IF NOT EXISTS vfile_nocase "
" ON vfile(pathname COLLATE nocase)"
"CREATE INDEX IF NOT EXISTS %s.vfile_nocase "
" ON vfile(pathname COLLATE nocase)",
db_name("localdb")
);
}
}
return caseSensitive;
}
/*
|