On Monday, 10 June 2013 10:14:36 UTC-5, step wrote:
I am using the Windows web2py.exe binary version Version 2.4.7-stable+timestamp.2013.05.29.16.40.45.I need to know if web2py.exe supports multilingual, case-independed matches, such as
SELECT FIELD LIKE 'à' -- should match when field value is 'À' (uppercase) and field is defined as FIELD TEXT COLLATE NOCASE
Web2py does not care. If the database supports it, web2py does.
So do I really need to replace sqlite.dll to get multilingual support?
So your question is whether sqlite supports it or not. All I can say is that we ship with the same SQlite that comes standard with python, therefore you may have to replace the dll.
Which version of sqlite.dll ships with web2py 2.4.7 and is it going to ship with that version through a couple of web2py upgrades?
My intent is to stay away from custom web2py builds as much and as long as possible, provided that I can get multilingual support.
TIA