SQLiteに関するこの投稿では、aaronasterlingは私に次のように語っています
cmd = "attach \"%s\" as toMerge" % "b.db"
: 間違っているcmd = 'attach "{0}" as toMerge'.format("b.db")
: 正しいcmd = "attach ? as toMerge"; cursor.execute(cmd, ('b.db', ))
:正しいことです
でも、1回目と2回目は同じだと思いました。これら3つの違いは何ですか?