mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-27 02:52:53 -04:00
3f1477e2ec
directly into the unit of work's facility for emitting INSERT and UPDATE statements has been created. When used correctly, this expert-oriented system can allow ORM-mappings to be used to generate bulk insert and update statements batched into executemany groups, allowing the statements to proceed at speeds that rival direct use of the Core. fixes #3100
8 lines
142 B
Python
8 lines
142 B
Python
"""Allows the examples/performance package to be run as a script."""
|
|
|
|
from . import Profiler
|
|
|
|
if __name__ == '__main__':
|
|
Profiler.main()
|
|
|