On Nov 20, 2007 7:12 AM, cesco <[EMAIL PROTECTED]> wrote:
...
> isn't the django API supposed to be portable across different database
> platforms? Does iregex make an exception because of SQLite lack of reg-
> exp support?

It tries, but isn't heroic.  The options for total portability would
be either no regex support at all (since SQLite doesn't support it),
or an adapting shim (as it currently does) or maybe even dropping
SQLite as an option.

I think the adaptation approach is a good option.

>If that's the case then the code has to be changed when
> moving to production (that is, likely to a different database
> platform)?

Not really-- you could build your regex based on the engine:

from django.conf import settings

if settings.DATABASE_ENGINE == 'sqlite':
   re = something
else:
  re = something_else

That may make you cringe, but it only makes explicit what is really
going on when you push to prod w/ modified code anyway.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to