Skip to content

Commit 3c12711

Browse files
committed
Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on docs@.
1 parent 87f3d7b commit 3c12711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/sqlite3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Module functions and constants
174174
For the *isolation_level* parameter, please see the
175175
:attr:`Connection.isolation_level` property of :class:`Connection` objects.
176176

177-
SQLite natively supports only the types TEXT, INTEGER, FLOAT, BLOB and NULL. If
177+
SQLite natively supports only the types TEXT, INTEGER, REAL, BLOB and NULL. If
178178
you want to use other types you must add support for them yourself. The
179179
*detect_types* parameter and the using custom **converters** registered with the
180180
module-level :func:`register_converter` function allow you to easily do that.

0 commit comments

Comments
 (0)