*
Hi Michael Bayer 

Thank you for your help.

I tried to change create_engine args you suggested below.

create_engine('mysql+pymysql://teaspoon:teaspoon@/teaspoon') 

But, same problem was happened.

So, I create "user table" like the URL you tought me.
---
CREATE TABLE user
(
user VARCHAR(64),
host VARCHAR(64)
);
INSERT INTO user VALUE ('teaspoon', 'localhost');
---
But, I couldn't resolve.

*
it seems like you connect without a host using mysql.exe, so try:

>
> create_engine('mysql+pymysql://teaspoon:teaspoon@/teaspoon')
>
> otherwise you need to add an entry for 'teaspoon'@'localhost' to your user 
> table:
>
> http://dev.mysql.com/doc/refman/5.0/en/connection-access.html
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sqlalchemy/-/JQgB8MxwfkgJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to