Created
May 12, 2015 12:48
-
-
Save Hackforid/e38740495c5e8ddd43c9 to your computer and use it in GitHub Desktop.
Sqlalchemy批量插入
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conn.execute(MyTable.insert(), [{'color': 'blue'}, | |
{'color': 'red'}, | |
{'color': 'green'}]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment