フォーマットパラメータを使用してクエリを実行しますが、これらを渡さないでください。 % (start, next)
一部は外部に移動します SQLクエリの例:
cur_ca.execute("""
select id,
date_created,
data
from bureau_inquiry where date_created >= %s and date_created < %s
""" % (start, next)
)
ただし、データベースがクエリを準備してクエリプランを再利用できるように、SQLパラメータを使用することをお勧めします。
cur_ca.execute("""
select id,
date_created,
data
from bureau_inquiry where date_created >= ? and date_created < ?
""", (start, next)
)
PyODBCは?
を使用します SQLパラメータの場合。