SQLAlchemy:如何使用 SQLAlchemy 更改 MySQL 服务器系统变量?

SQLAlchemy: How to change a MySQL server system variable using SQLAlchemy?(SQLAlchemy:如何使用 SQLAlchemy 更改 MySQL 服务器系统变量?)
本文介绍了SQLAlchemy:如何使用 SQLAlchemy 更改 MySQL 服务器系统变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用 SQLAlchemy 设置 general_log 和 general_log_file 变量,有没有办法做到这一点?我一直在谷歌上搜索,但找不到任何关于该主题的内容.

I want to set the general_log and general_log_file variables using SQLAlchemy, is there a way to do this? I've been Googling around and can't find anything on the topic.

推荐答案

您可以执行任何您需要的原始 SQL 查询(当然您必须在会话中获得适当的权限).要更改变量,请执行以下操作:

You can execute any raw SQL query which you need (of course you have to get appropriate rights in the session). To change a variable run something like this:

# change variable name and values to what you need
connection.execute("SET SESSION query_cache_type = OFF")

这篇关于SQLAlchemy:如何使用 SQLAlchemy 更改 MySQL 服务器系统变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)