From 1b6c4f13eb5bce54c20fd03b5e0bc799224524f1 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Tue, 19 Apr 2016 06:21:12 +0900 Subject: [PATCH] Update README --- README.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.rst b/README.rst index 706f060..230a6ef 100644 --- a/README.rst +++ b/README.rst @@ -13,6 +13,11 @@ PyMySQL This package contains a pure-Python MySQL client library. The goal of PyMySQL is to be a drop-in replacement for MySQLdb and work on CPython, PyPy and IronPython. +NOTE: PyMySQL doesn't support low level APIs `_mysql` provides like `data_seek`, +`store_result`, and `use_result`. You should use high level APIs defined in PEP 294. +But some APIs like `autocommit` and `ping` are supported because PEP 294 doesn't cover +their usecase. + Requirements -------------