[sqlalchemy] datetime and engine

2012-03-30 Thread shinriyo
hi jo Oracle and PostgreSQL are different. Oracle also have hour and minutes and second. If you want minutes and second on PostgresQL, you should use datetime. -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To view this discussion on the web

[sqlalchemy] Python facebook-sdk Tornado sample

2012-03-29 Thread shinriyo
I fix set your OS environment variable [Windows} setenv FB_ID=your facebook develper ID setenv FB_SECRET=your facebook develper FB_SECRET [MacOSX} set FB_ID=your facebook develper ID set FB_SECRET=your facebook develper FB_SECRET later python example.py -- You received this message because

[sqlalchemy] Python facebook-sdk Tornado sample

2012-03-29 Thread shinriyo
You can use safari And tcsh command is export -- 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/-/dBbzr9715cYJ. To post to this group, send email to

[sqlalchemy] Python facebook-sdk Tornado sample

2012-03-28 Thread shinriyo
Hi all I download python facebook-sdk below https://github.com/facebook/python-sdk/tree/master/examples/tornado It is not using sqlalchemy. So, I modified but I couldn't modify enough https://github.com/shinriyo/tornado command--- python example2.py -- Is there anyone who modify

[sqlalchemy] Re: Access denied for user error

2012-03-25 Thread shinriyo
Hi All Mac edition is resolved. because, I use PostgreSQL+Python3.2.2 ! But, Windows can't.In spite of Python2.7!!! -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To view this discussion on the web visit

Re: [sqlalchemy] Re: How to work with python3.2 and mysql?

2012-03-23 Thread shinriyo
Hi Michael Bayer Thank you for telling me OurSQL MySQL C client libraries is required, so I installed my Windows PC. but it happened below when pip install oursql -- print cython not found, using previously-cython'd .c file. did you installed via pip? -- You received this message because you

Re: [sqlalchemy] Re: How to work with python3.2 and mysql?

2012-03-23 Thread shinriyo
Hi Michael Bayer Thank you for telling me the link. -- 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/-/mAHgKjkQskkJ. To post to this group, send email to

Re: [sqlalchemy] Re: Access denied for user error

2012-03-22 Thread shinriyo
Mac version is also strange (fb_env)shinriyo:teaspoon shinriyo$ python . create = 20:46:34 : creating the database. 2012-03-22 20:46:34,905 INFO sqlalchemy.engine.base.Engine b'SELECT DATABASE()' 2012-03-22 20:46:34,905 INFO sqlalchemy.engine.base.Engine () 2012-03-22 20:46:34,910 INFO

[sqlalchemy] Re: How to work with python3.2 and mysql?

2012-03-22 Thread shinriyo
Hi. I had similar bug you wrote did you resolve? I used Python3.2 and mysqlconnector Traceback (most recent call last): File /Users/shinriyo/ve/fb_env/lib/python3.2/site-packages/sqlalchemy/pool.py, line 717, in _do_get return self._pool.get(wait, self._timeout) File /Users/shinriyo

Re: [sqlalchemy] Re: How to work with python3.2 and mysql?

2012-03-22 Thread shinriyo
Hi Michael Bayer Thank you for replying In spite of Oracle product, MySQL connector can't work on Python3 can't it? Oracle buy up MySQL but waz a pity. What is the good MySQL connector for Python3 ? -- You received this message because you are subscribed to the Google Groups sqlalchemy group.

[sqlalchemy] Re: Access denied for user error

2012-03-21 Thread shinriyo
I tried sqlit. it is fine. engine = create_engine('sqlite+pysqlite:///file.db') but, MySQL can't connect. 2012年3月21日水曜日12時46分23秒 UTC+9 shinriyo: Hi there I use sqlalchemy and Python3.2 and pymysql on Windows7. I tried below from sqlalchemy import * engine = create_engine('mysql

Re: [sqlalchemy] Re: Access denied for user error

2012-03-21 Thread shinriyo
* 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),