Changes between Initial Version and Version 1 of Ticket #5553


Ignore:
Timestamp:
Feb 2, 2012, 10:42:54 PM (12 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5553 – Description

    initial v1  
    22
    33For example:
    4 
     4{{{
     5#!python
    56cursor.execute("SELECT id, name, notes, sort, timestamp, deleted "
    67                       "FROM downloader_category "
    78                       "WHERE id = %s", (id,))
     9}}}
    810
    911This will break near id = %s because you need to specify the table where ID resides. Something like this: