Commit 72042850 authored by Georg Brandl's avatar Georg Brandl

Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on docs@.

parent 3629c0f2
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment