I have this line that works OK:
c.execute(\'select cleanseq from cleanseqs WHERE newID=\"%s\"\'%name)
But I want to use SQLite parameter su
Lose the quotes around ?
c.execute('select cleanseq from cleanseqs WHERE newID=?',(t,))
It's treating it as the string "?".
Do you need to use double quotes around the whole expression, instead of singles?