Contact: fumanchu@aminus.org

Log in as guest/dejavu to create tickets

I think I've seen this ORM somewhere before...

Changeset 195

Show
Ignore:
Timestamp:
03/15/06 21:48:31
Author:
fumanchu
Message:

Fix for #50 (backslash doubled in SQLite).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/storage/storesqlite.py

    r194 r195  
    2525class AdapterToSQLite(db.AdapterToSQL): 
    2626     
     27    # C-style backslash escapes are not supported. 
     28    # See http://www.sqlite.org/lang_expr.html 
     29    escapes = [("'", "''")] 
    2730    like_escapes = [("%", "\%"), ("_", "\_")] 
    2831