Changeset 195
- Timestamp:
- 03/15/06 21:48:31
- Files:
-
- trunk/storage/storesqlite.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/storage/storesqlite.py
r194 r195 25 25 class AdapterToSQLite(db.AdapterToSQL): 26 26 27 # C-style backslash escapes are not supported. 28 # See http://www.sqlite.org/lang_expr.html 29 escapes = [("'", "''")] 27 30 like_escapes = [("%", "\%"), ("_", "\_")] 28 31
