Tagged Questions
0
votes
2answers
32 views
Possible MySQL authentication issue with python package (PyMySQL3)
I actually found a blog post that pretty much sums up my problem. Its at
http://simon04.net/2013/03/python3-mysql/
The blog post is the most clear but to summarize: I'm currently trying to access a ...
0
votes
1answer
66 views
Python (uWSGI), MySQL - Broken Pipe error
I use Bottle framework, uWSGI, MySQL connector for Python 3 (https://github.com/petehunt/PyMySQL) and MySQL itself. I recently ran into the error:
Traceback (most recent call last):
File ...
0
votes
0answers
31 views
weakly-referenced object no longer exists error on creating a function
I am working with MySQL connector and Python 3.3. I am creating a script that consists of functions that frequently access database server. So for all the functions I have created, I am trying to ...
0
votes
1answer
110 views
password error connecting to mysql database with python 3.3.1
i'm a newbie to python, trying to learn some stuff by writing server scripts which connect to our mysql databases and do some stuff. i have python 3.3.1, and mysql 5.0.96 (community). i installed the ...
0
votes
1answer
39 views
Which DBDriver works for Python3x and SQLAlchemy0.8 for MySQL?
I've been trying to get Python3.2 and SQLAlchemy0.8 to play nice with MySQL but I've failed miserably :-(
I tried using Mysql-Python but I failed as it emerged that MySQL-python is not yet compatible ...
0
votes
2answers
92 views
python3.3 TypeError: embedded NUL character
I searched about our problem but couldn't find anny solution.
I've installed mysqlconnector in a virtual environment. I also changed the connection string from the sqlalchemy scaffold in pyramidsthat ...
0
votes
1answer
142 views
creating a table in mysql using pymysql and sqlalchemy
I have a problem with creating a table in mysql using python 3.3.
I'm using Pymysql-0.15 and SQLAlchemy.
currently I'm running this code in Pythonwin and have the following output.
from sqlalchemy ...
0
votes
2answers
404 views
Pyramid, Python3, SQLAlchemy and MySQL
I want Pyramid, Python3, SQLAlchemy and MySQL to play nice on a single machine. This question has been asked before, but it was a long enough time ago that I'm hoping the answer has changed...
...
2
votes
1answer
69 views
extremely slow connection to mysql
I'm using a very simple connection to a localhost database:
engine = sqlalchemy.create_engine('mysql+mysqlconnector://usr:pwd@localhost/db')
engine = engine.connect()
data = engine.execute('select * ...
1
vote
1answer
320 views
what is the proper way to convert between mysql datetime and python timestamp?
according to http://dev.mysql.com/doc/refman/5.0/en/datetime.html. i got to find a way to convert the string value 'YYYY-MM-DD HH:MM:SS' to a timestamp int.
i looked up in python's doc.
i tried:
...
0
votes
3answers
270 views
Python 3 and mysql through SQLAlchemy
Currently:
SQLAlchemy installed and working (or at least import v0.8.0b2)
Mysql (v5.5.16)
Distribute (0.6.34)
Oracle mysql-python connector
Python 3.2
Windows 7 32/64 (note that I installed Python ...
0
votes
1answer
175 views
how to setup google cloud sql locally
How do I set up google cloud sql programmatically in python in a way that works both on GAE and the local test environment?
When I setup locally the console always says that
MySQLdb is not ...
2
votes
0answers
528 views
TypeError: unsupported operand type(s) for %: 'bytes' and 'tuple' [closed]
TypeError: unsupported operand type(s) for %: 'bytes' and 'tuple'
The setup is as follows:
Eloipool is a bitcoinmining pool software http://gitorious.org/bitcoin/eloipool
PyMySQL is required for the ...
0
votes
0answers
81 views
python 3 euro sign not encoded correctly
I am using a script to retrieve some data from a MySQL database with prices in different currencies.
Every currency symbol works fine, except for the euro sign (€), which returns the little square ...
1
vote
1answer
285 views
SQLAlchemy error inserting multiple objects
This likely something simple I'm missing, but I have no idea what it is.
Here's my code:
from sqlalchemy import (Column, String, create_engine)
from sqlalchemy.schema import FetchedValue
from ...
2
votes
2answers
143 views
sqlalchemy FetchedValue and primary_key
I'm trying to create a table that uses a UUID_SHORT() as a primary key. I have a trigger that inserts a value when you do an insert. I'm having trouble making sqlalchemy recognize a column as a ...
0
votes
2answers
151 views
SQLAlchemy - Parent child relationship in the same table
I want to have a parent child relationship in the same table. Below is what I have, and it isn't working. By "not working", I meant that when I call .children on some Item object, it gives me []. What ...
0
votes
2answers
58 views
Get TypeError when trying to get all Rows from MySql
I'm semi new to Python and need some help. Didn't find much from googling. I'm using pymysql with python3. I can connect and query my db. When I try to get all the rows in a table and loop over them I ...
-1
votes
1answer
94 views
How can I create and drop the database using Python code?
I'm very new to Python. How can we drop and create the database in Python?
I'm using MySql and Windows server 2003.
Note: I have all the queries, Drop, create and insert records everything in a ...
1
vote
1answer
180 views
Accessing one value from MySQL using pymysql in python
I am trying to fetch one value from a database using pymysql. My current solution is 3 lines of code. Is this the best way to handle this?
import pymysql
conn = pymysql.connect(host='localhost', ...
1
vote
1answer
192 views
How can I escape the input to a MySQL db in Python3?(Solved)
How can I escape the input to a MySQL db in Python3?
I'm using PyMySQL and works fine, but when I try to do something like:
cursor.execute("SELECT * FROM `Codes` WHERE `ShortCode` = ...
1
vote
1answer
170 views
Using Tornado and mysql with Python 3x
Tornado framework is compatible with Python 3, but it uses the mysqldb package which from what I've read is not compatible with Python 3.
Will this present any issues when working with my mysql ...
0
votes
0answers
429 views
mysql for Python 3.2 on Windows?
I have the following installed:
Python 3.2
MySQL 5.5
Windows 7
Tornado web framework
I am simply trying to connect my database on mysql to my python website and am using Tornado as my framework. ...
1
vote
1answer
1k views
How to connect MySQL with python 3
everyone I am new to python and I want to connect MySQL database with python 3 script. I did some googling but couldn't find anything for python 3 although there are methods for earlier python ...
2
votes
1answer
691 views
Python3 MySQL Drivers
Recently, I switched to Python 3 (3.1 on a FreeBSD system), and i would like to work with MySQL databases.
First i tried to use pymysql3-0.4, but it failed when i used SUM in my query with this ...
2
votes
1answer
184 views
Py3k MySQL driver for SQL Alchemy
I'm trying to find MySQL driver written in Python 3 which I may bind to SQL Alchemy. So it should be compatiable with DB-API 2.
The only driver which can connect to MySQL db in this one. But I cannot ...
2
votes
3answers
2k views
Python 3.2 script to connect to local MySQL database
I am running an Ubuntu Server. I would like for it to have a Python (v3.2) CGI script that would connect, and run a query, to the local MySQL database I have set up. Currently, the only things I found ...
7
votes
3answers
8k views
Python 3 and mysql
I am using activestate python 3 on windows and wanted to connect to my mysql database.
I heard that mysqldb was the module to use.
I can't find mysqldb for python 3.
Is there a repository available ...
0
votes
2answers
581 views
Python 3, SQLAlchemy, MySQL. Incorrect syntax in INSERT statement
Engine = create_engine("mysql+mysqldb://blah-blah-blah", encoding="utf-8")
Session = sessionmaker(bind = Engine)
ses = Session()
Meta = MetaData(bind = Engine, reflect = True)
PersonTable = ...
13
votes
7answers
13k views
MySQL-db lib for Python 3.0?
So, looking for a mysql-db-lib that is compatible with py3k/py3.0/py3000, any ideas? google turned up nothing.

