anxiousmodernman / teamdash

A platform for developing, scheduling, and viewing reports
0 stars 0 forks source link

Find out how to do parameterized SQL in cursor.execute() method #4

Closed anxiousmodernman closed 11 years ago

anxiousmodernman commented 11 years ago

## from one of our connection classes make a cursor

cur = conn.getCursor()

cur.execute()

## OR maybe

cur.executemany()
anxiousmodernman commented 11 years ago

This is no longer relevant since we're using SQLAlchemy