Inada Naoki

Results 343 comments of Inada Naoki

FYI, `init_command="SET SESSION time_zone=UTC"` works.

It is because most API is DB-API 2.0 compatible and user can find "how to" elsewehere. And this library is low level library. Application programmers are recommended to use higher...

Unlikely, but I'm not sure.

FYI, I'm not interested in supporting this. After 1.0, I'll look MySQL x-protocol. It support prepared statement without extra roundtrips. If someone interested in this, please respect PostgreSQL drivers and...

Would you try to replace this "-" with "_"? https://github.com/PyMySQL/PyMySQL/blob/f24cb9aa7295921bcd8f34f752c8a05b981d3125/pymysql/connections.py#L261

Those commit drop only official support. It doesn't mean current mysqlclient doesn't work with Python 3.6. I don't want to block users try using recent mysqlclient with Python 3.6. Is...

I don't remember correctly, but there were several reasons I want to drop Python 3.5. For example, this commit drop Python 3.5 support. So I am sure that current code...

Currently, Cursor is an iterable, not an iterator. So missing `__next__` is not a bug. You can iterate over the cursor with `for` statement or `iter(cursor)`. But DB-API 2.0 says...

It makes sense. Compatibility between mysqlclient and PyMySQL (except low level APIs provided by `MySQLdb._mysql` module) is welcome.