SQLpage
SQLpage copied to clipboard
sqlpage.run_sql opens a new database connection instead of reusing the connection over which the current request is being handled
sqlpage.run_sql fetches a new database connection from the connection pool instead of reusing the connection over which the current request is being handled
This has implications such as
- temporary tables not being accessible
- attached databases not being accessible
- performance
for details, see : https://github.com/lovasoa/SQLpage/discussions/336