On Thursday 16 May 2013, VernonCole wrote: > I noticed in a recent post that there is an outstanding patch for Oracle > for support of 'named' paramstyle. >
As the author of that patch, I should probably clarify that it is a "format" style -- %(name)s -- not a "named" -- :name -- style. AFAIK, that style is currenly supported by all core django backends (well, except Oracle, of course); I know our code which uses it has been successfully run against SQLite and Postgres, and I suspect django-pyodbc also supports it. It has its problems, both with respect to Python string interpolation and to SQL's pattern operator, but AFAIK it is the most common in use. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-developers?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
