-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MySQL Support #69
MySQL Support #69
Conversation
Still need to figure out the connection_string thing in the query runner |
@ekampf can you add requirements_mysql.txt file that has the needed packages for MySQL? |
import sys | ||
import select | ||
from .utils import JSONEncoder | ||
|
||
|
||
def redshift(connection_string): | ||
def mysql(connection_string): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You kept the mysql one here, but moved the redshift one to mysql_query_runner.py...
MySQLdb isn't available via pip. Download package from http://sourceforge.net/projects/mysql-python $ gunzip MySQL-python-1.2.3.tar.gz |
MySQL Support
No description provided.