diff options
author | SpootDev <spootdev@gmail.com> | 2016-07-15 22:17:34 -0500 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2016-08-07 02:44:08 +0100 |
commit | edd51aac25b2cc9f25e0df1d94724b945797832a (patch) | |
tree | 9ada702bd16cb13bacc9f1c82118345451c56f6e | |
parent | ab671146de9615b0371a4f4857d849f230916c64 (diff) | |
download | psycopg2-edd51aac25b2cc9f25e0df1d94724b945797832a.tar.gz |
spelling fix
-rw-r--r-- | doc/src/faq.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/faq.rst b/doc/src/faq.rst index 69273ba..d063666 100644 --- a/doc/src/faq.rst +++ b/doc/src/faq.rst @@ -73,7 +73,7 @@ Why does `!cursor.execute()` raise the exception *can't adapt*? I can't pass an integer or a float parameter to my query: it says *a number is required*, but *it is* a number! In your query string, you always have to use ``%s`` placeholders, - event when passing a number. All Python objects are converted by Psycopg + even when passing a number. All Python objects are converted by Psycopg in their SQL representation, so they get passed to the query as strings. See :ref:`query-parameters`. :: |