diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 10:38:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 10:38:44 (GMT) |
commit | 3c1271142d7f8d16cea85e68460d1cbdc3581d05 (patch) | |
tree | 8853020803332630c612f2e601b0f32503ea7315 | |
parent | 87f3d7bb54cf2c546bde694b14c5e588fc3e7dbc (diff) | |
download | cpython-3c1271142d7f8d16cea85e68460d1cbdc3581d05.zip cpython-3c1271142d7f8d16cea85e68460d1cbdc3581d05.tar.gz cpython-3c1271142d7f8d16cea85e68460d1cbdc3581d05.tar.bz2 |
Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on docs@.
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 08e3a2e..a2bd48c 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -174,7 +174,7 @@ Module functions and constants For the *isolation_level* parameter, please see the :attr:`Connection.isolation_level` property of :class:`Connection` objects. - SQLite natively supports only the types TEXT, INTEGER, FLOAT, BLOB and NULL. If + SQLite natively supports only the types TEXT, INTEGER, REAL, BLOB and NULL. If you want to use other types you must add support for them yourself. The *detect_types* parameter and the using custom **converters** registered with the module-level :func:`register_converter` function allow you to easily do that. |