Opened 16 years ago

Last modified 15 years ago

#6047 closed

db-api docs: invalid REGEX SQL equiv for SQLite — at Version 2

Reported by: Richard D. Worth <rdworth@…> Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Malcolm Tredinnick)

On the documentation/db-api/ page, under REGEX, the following

"In the case of SQLite, which doesn’t natively support regular-expression lookups, the syntax is that of Python’s re module."

doesn't match this line

SQL equivalents:

SELECT ... WHERE title REGEXP '^(An?|The) +'; -- SQLite

This should be removed, or a SQL + pythen re equiv should be put in its place.

Change History (2)

comment:1 by Simon G <dev@…>, 16 years ago

Needs documentation: set
Triage Stage: UnreviewedAccepted

comment:2 by Malcolm Tredinnick, 16 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top