All Questions
3 questions
9
votes
1
answer
5k
views
Global query timeout in MySQL 5.6
I need to apply a query timeout at a global level in my application. The query: SET SESSION max_execution_time=1 does this with MySQL 5.7. I am using MySQL 5.6 and cannot upgrade at the moment. Any ...
2
votes
1
answer
4k
views
Connect to mysql with sqlalchemy and query
I have a MySQL database with stock market quotes. I'm trying to create a python script to connect to the database and query it. Here is my python script...
from flask import Flask
from ...
1
vote
1
answer
855
views
Unable to store datetime.datetime.max using SQLAlchemy==0.8.1 with the mysql-python==1.2.4 driver
I've noticed a change in behavior for storing datetime.datetime.max via SQLAlchemy==SQLAlchemy==0.8.1 and going from mysql-python==1.2.3 to mysql-python==1.2.4. By only changing the driver from 1.2.3 ...