Django

Code

Changeset 5556

Show
Ignore:
Timestamp:
06/27/07 14:16:05 (1 year ago)
Author:
jacob
Message:

Fixed #4712: added mention of Oracle in docs from [5555]. Thanks, Tom.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r5555 r5556  
    11901190    SELECT ... WHERE title REGEXP BINARY '^(An?|The) +'; -- MySQL 
    11911191 
     1192    SELECT ... WHERE REGEXP_LIKE(title, '^(an?|the) +', 'c'); -- Oracle 
     1193 
    11921194    SELECT ... WHERE title ~ '^(An?|The) +'; -- PostgreSQL 
    11931195 
     
    11961198Using raw strings for passing in the regular expression syntax is recommended. 
    11971199 
    1198 Regular expression matching is not supported on the ``ado_mssql`` and 
    1199 ``oracle`` backends; these will raise a ``NotImplementedError``. 
     1200Regular expression matching is not supported on the ``ado_mssql`` backend; it 
     1201will raise a ``NotImplementedError``. 
    12001202 
    12011203iregex 
     
    12111213 
    12121214    SELECT ... WHERE title REGEXP '^(an?|the) +'; -- MySQL 
     1215 
     1216    SELECT ... WHERE REGEXP_LIKE(title, '^(an?|the) +', 'i'); -- Oracle 
    12131217 
    12141218    SELECT ... WHERE title ~* '^(an?|the) +'; -- PostgreSQL