summaryrefslogtreecommitdiffstats
path: root/Doc/library/sqlite3.rst
Commit message (Collapse)AuthorAgeFilesLines
* merge with 3.3Georg Brandl2013-10-061-1/+1
|\
| * Fix SQLite datatype name: it is REAL, not FLOAT. Found by Richard Kelsall on ↵Georg Brandl2013-10-061-1/+1
| | | | | | | | docs@.
* | Issue #14720: Enhance sqlite3 microsecond conversion, document its behaviorPetri Lehtinen2013-02-261-0/+4
|\ \ | |/
| * Issue #14720: Enhance sqlite3 microsecond conversion, document its behaviorPetri Lehtinen2013-02-261-0/+4
| |\
| | * Issue #14720: Enhance sqlite3 microsecond conversion, document its behaviorPetri Lehtinen2013-02-261-0/+4
| | |
* | | Issue #8890: Stop advertising an insecure use of /tmp in docsPetri Lehtinen2013-02-231-2/+2
|\ \ \ | |/ /
| * | Issue #8890: Stop advertising an insecure use of /tmp in docsPetri Lehtinen2013-02-231-2/+2
| |\ \ | | |/
| | * Issue #8890: Stop advertising an insecure use of /tmp in docsPetri Lehtinen2013-02-231-2/+2
| | |
* | | Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the ↵Antoine Pitrou2013-02-091-1/+13
|/ / | | | | | | filename as a URI, allowing to pass custom options.
* | merge #13934: document sqlite version strings, use correct one in test.R David Murray2013-01-111-0/+22
|\ \ | |/
| * #13934: document sqlite version strings, use correct one in test.R David Murray2013-01-111-0/+22
| |
* | Merge: Fix sqlite3 class markup.R David Murray2012-10-011-222/+226
|\ \ | |/
| * Fix sqlite3 class markup.R David Murray2012-10-011-215/+215
| |
* | Merge #15742: clarify sqlite parameter substitution example.R David Murray2012-08-201-1/+1
|\ \ | |/ | | | | Suggestion and patch by Mike Hoy.
| * #15742: clarify sqlite parameter substitution example.R David Murray2012-08-201-1/+1
| | | | | | | | Suggestion and patch by Mike Hoy.
* | #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-211-1/+1
|\ \ | |/
| * #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-211-1/+1
| |
* | Merge branch '3.2'Petri Lehtinen2012-03-011-8/+8
|\ \ | |/ | | | | Issue #13491.
| * sqlite3: Port documentation changes from the 2.7 branchPetri Lehtinen2012-03-011-8/+8
| | | | | | | | Issue #13491.
* | Merge branch '3.2'Petri Lehtinen2012-02-161-6/+5
|\ \ | |/ | | | | Closes #13995.
| * sqlite3: Fix documentation errors concerning Cursor.rowcountPetri Lehtinen2012-02-161-6/+5
| | | | | | | | Closes #13995.
* | Merge branch '3.2'Petri Lehtinen2012-02-151-6/+2
|\ \ | |/ | | | | Issue #13491.
| * Issue #13491: Fix many errors in sqlite3 documentationPetri Lehtinen2012-02-151-6/+2
| | | | | | | | Initial patch by Johannes Vogel.
* | Undocument and clean up sqlite3.OptimizedUnicodePetri Lehtinen2012-02-091-4/+0
| | | | | | | | Closes #13921.
* | Merge with 3.2.Ezio Melotti2011-10-191-1/+1
|\ \ | |/
| * Remove duplication.Ezio Melotti2011-10-191-1/+1
| |
* | merge from 3.2Senthil Kumaran2011-07-031-37/+38
|\ \ | |/
| * reST indentation fix in sqlite3 docs. rst uses 3 space indentation.Senthil Kumaran2011-07-031-37/+38
| |
* | Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by Torsten ↵Antoine Pitrou2011-04-031-0/+16
|/ | | | Landschoff.
* there's now a setup.py switch for thisBenjamin Peterson2010-11-281-1/+1
|
* Remove unnecessary `object` base class in docs (#10366).Éric Araujo2010-11-221-1/+1
| | | | Also add a note about inheritance from `object` being default.
* #8811: small fixes to sqlite3 docs.Georg Brandl2010-10-171-16/+14
|
* Fixes #10020Gerhard Häring2010-10-031-0/+11
|
* Consistency check for versionadded/changed directives.Georg Brandl2010-08-171-7/+5
|
* Issue #3854: Documented using the sqlite3 module with multiple threads.Gerhard Häring2010-08-061-0/+15
|
* #8456: fix signature of sqlite3.connect().Georg Brandl2010-07-101-1/+1
|
* fix typoBenjamin Peterson2010-06-061-1/+1
|
* #8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute.R. David Murray2010-06-011-1/+9
| | | | Patch by R. David Murray, unit tests by Shashwat Anand.
* Merged revisions ↵Benjamin Peterson2010-03-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines Remove Tools/modulator, a reference to it in the docs, and a screenshot of it. (I asked the BDFL first, and he approved removing it. The last actual bugfix to Tools/modulator was in 2001; since then all changes have been search-and-replace: string methods, whitespace fixes, etc.) ........ r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819). ........ r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line #7706: add include guards where they're missing; required for Windows CE ........ r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line #7191: describe more details of wbits parameter ........ r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line #7637: avoid repeated-concatenation antipattern in example ........ r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines Manually copy patch for bug 7250 from the release26-maint branch. I suck because I did this in the wrong order and couldn't smack svnmerge into submission. ........ r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line remove CVS id ........ r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line Link correction in documentation. ........ r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line rephrase ........ r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines Try to fix buildbot breakage from r78384. Thanks bitdancer and briancurtin for the help. ........ r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines These line should not be there. ........
* Update versionadded/changed.Ezio Melotti2010-03-211-2/+2
|
* Merged new pysqlite version 2.6.0 from trunk.Gerhard Häring2010-03-051-1/+20
|
* Merged revisions 78176 via svnmerge fromEzio Melotti2010-02-141-6/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78176 | ezio.melotti | 2010-02-14 04:50:23 +0200 (Sun, 14 Feb 2010) | 1 line #7921: fix links. Patch by Brian Curtin. ........
* Fix sqlite3 docs. `buffer` is gone, `bytes` objects are returned for BLOBs ↵Antoine Pitrou2010-02-021-8/+6
| | | | | | instead. Patch by Pablo Mouzo.
* small fixes in the examples and in the markupEzio Melotti2009-09-131-11/+12
|
* Merged revisions 74209 via svnmerge fromGeorg Brandl2009-07-261-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74209 | georg.brandl | 2009-07-26 16:37:28 +0200 (So, 26 Jul 2009) | 1 line builtin -> built-in. ........
* Issue #6354: More fixes for code examples involving the repr of a float.Mark Dickinson2009-06-281-2/+2
|
* Merged revisions 72661,72675-72677,72679,72712,72801,72820 via svnmerge fromGeorg Brandl2009-05-251-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72661 | georg.brandl | 2009-05-15 10:03:03 +0200 (Fr, 15 Mai 2009) | 1 line Fix example output for doctest-like demos. ........ r72675 | georg.brandl | 2009-05-16 13:13:21 +0200 (Sa, 16 Mai 2009) | 1 line #6034: clarify __reversed__ doc. ........ r72676 | georg.brandl | 2009-05-16 13:14:46 +0200 (Sa, 16 Mai 2009) | 1 line #6025: fix signature of parse(). ........ r72677 | georg.brandl | 2009-05-16 13:18:55 +0200 (Sa, 16 Mai 2009) | 1 line #6009: undocument default argument of Option as deprecated. ........ r72679 | georg.brandl | 2009-05-16 13:24:41 +0200 (Sa, 16 Mai 2009) | 1 line Fix about and bugs pages to match real workflow. ........ r72712 | georg.brandl | 2009-05-17 10:55:00 +0200 (So, 17 Mai 2009) | 1 line #5935: mention that BROWSER is looked for in PATH. ........ r72801 | georg.brandl | 2009-05-20 20:31:14 +0200 (Mi, 20 Mai 2009) | 1 line #6055: refer to "sqlite3" consistently. ........ r72820 | georg.brandl | 2009-05-22 09:23:32 +0200 (Fr, 22 Mai 2009) | 1 line Use raise X(y). ........
* Remove 2.6 versionchanges, turn 2.7 ones into 3.1.Georg Brandl2009-01-041-5/+0
|
* Remove trailing whitespace.Georg Brandl2009-01-031-5/+5
|
* Merged revisions ↵Benjamin Peterson2008-11-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 67348,67355,67359,67362,67364-67365,67367-67368,67398,67423-67424,67432,67440-67441,67444-67445,67454-67455,67457-67458 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r67348 | benjamin.peterson | 2008-11-22 20:09:41 -0600 (Sat, 22 Nov 2008) | 1 line raise a better error ........ r67355 | georg.brandl | 2008-11-23 13:17:25 -0600 (Sun, 23 Nov 2008) | 2 lines #4392: fix parameter name. ........ r67359 | georg.brandl | 2008-11-23 15:57:30 -0600 (Sun, 23 Nov 2008) | 2 lines #4399: fix typo. ........ r67362 | gregory.p.smith | 2008-11-23 18:41:43 -0600 (Sun, 23 Nov 2008) | 2 lines Document PY_SSIZE_T_CLEAN for PyArg_ParseTuple. ........ r67364 | benjamin.peterson | 2008-11-23 19:16:29 -0600 (Sun, 23 Nov 2008) | 2 lines replace reference to debugger-hooks ........ r67365 | benjamin.peterson | 2008-11-23 22:09:03 -0600 (Sun, 23 Nov 2008) | 1 line #4396 make the parser module correctly validate the with syntax ........ r67367 | georg.brandl | 2008-11-24 10:16:07 -0600 (Mon, 24 Nov 2008) | 2 lines Fix typo. ........ r67368 | georg.brandl | 2008-11-24 13:56:47 -0600 (Mon, 24 Nov 2008) | 2 lines #4404: make clear what "path" is. ........ r67398 | benjamin.peterson | 2008-11-26 11:39:17 -0600 (Wed, 26 Nov 2008) | 1 line fix typo in sqlite3 docs ........ r67423 | jesse.noller | 2008-11-28 12:59:35 -0600 (Fri, 28 Nov 2008) | 2 lines issue4238: bsd support for cpu_count ........ r67424 | christian.heimes | 2008-11-28 13:33:33 -0600 (Fri, 28 Nov 2008) | 1 line Retain copyright of processing examples. This was requested by a Debian maintainer during packaging of the multiprocessing package for 2.4/2.5 ........ r67432 | benjamin.peterson | 2008-11-28 17:18:46 -0600 (Fri, 28 Nov 2008) | 1 line SVN format 9 is the same it seems ........ r67440 | jeremy.hylton | 2008-11-28 17:42:59 -0600 (Fri, 28 Nov 2008) | 4 lines Move definition int sval into branch of ifdef where it is used. Otherwise, you get a warning about an undefined variable. ........ r67441 | jeremy.hylton | 2008-11-28 18:09:16 -0600 (Fri, 28 Nov 2008) | 2 lines Reflow long lines. ........ r67444 | amaury.forgeotdarc | 2008-11-28 20:03:32 -0600 (Fri, 28 Nov 2008) | 2 lines Fix a small typo in docstring ........ r67445 | benjamin.peterson | 2008-11-29 21:07:33 -0600 (Sat, 29 Nov 2008) | 1 line StringIO.close() stops you from using the buffer, too ........ r67454 | benjamin.peterson | 2008-11-30 08:43:23 -0600 (Sun, 30 Nov 2008) | 1 line note the version that works ........ r67455 | martin.v.loewis | 2008-11-30 13:28:27 -0600 (Sun, 30 Nov 2008) | 1 line Issue #4365: Add crtassem.h constants to the msvcrt module. ........ r67457 | christian.heimes | 2008-11-30 15:16:28 -0600 (Sun, 30 Nov 2008) | 1 line w# requires Py_ssize_t ........ r67458 | benjamin.peterson | 2008-11-30 15:46:16 -0600 (Sun, 30 Nov 2008) | 1 line fix pyspecific extensions that were broken by Sphinx's grand renaming ........