From fa79cac822156cb77c1d7861f3e89605538ed2ca Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Thu, 22 Jan 2009 07:33:30 +0000 Subject: [PATCH] Add note about case-sensitivity of searching when using SQLite to README. Fixes issue #43. --- README | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README b/README index ecf12307..22003008 100644 --- a/README +++ b/README @@ -31,6 +31,14 @@ LICENSE.3RDPARTY for license terms for included packages. 3. An existing WORKING Django project with database etc. If you cannot log into the Admin, you won't get this product working. + +NOTE REGARDING SQLITE AND SEARCHING: +If you use sqlite as your database, the search function will not work as +effectively as it will with other databases due to its inability to do +case-insensitive searches. It's recommended that you use PostgreSQL or MySQL +if possible. For more information, see this note in the Django documentation: +http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching + ######################### 3. Installation #########################