Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typos in Doc folder (#100880) | Semen Zhydenko | 2023-01-10 | 1 | -1/+1 |
| | |||||
* | gh-99953: Purge mention of numeric param style from sqlite3 docs (#100630) | Erlend E. Aasland | 2023-01-01 | 1 | -5/+1 |
| | | | The PEP-249 numeric style has never been supported by sqlite3. | ||||
* | gh-99087: Add missing newline for prompts in docs (GH-98993) | Stanley | 2022-12-09 | 1 | -0/+1 |
| | | | Add newline for prompts so copying to REPL does not cause errors. | ||||
* | gh-96250: Improve sqlite3 injection attack example (#99270) | Jia Junjie | 2022-12-08 | 1 | -6/+10 |
| | | | | Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com> | ||||
* | Doc: Add summary line to isolation_level & autocommit sqlite3.connect params ↵ | C.A.M. Gerlach | 2022-12-01 | 1 | -0/+2 |
| | | | | | | | (#99917) Add summary lines to isolation_level and autocommit connect() params Co-authored-by: Géry Ogam <gery.ogam@gmail.com> | ||||
* | gh-99824: Document that sqlite3.connect implicitly open a transaction if ↵ | Géry Ogam | 2022-11-30 | 1 | -3/+3 |
| | | | | | autocommit=False (#99825) Authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | Docs: both sqlite3 "point examples" now adapt to str (#99823) | Erlend E. Aasland | 2022-11-27 | 1 | -1/+1 |
| | |||||
* | gh-96168: Add sqlite3 row factory how-to (#99507) | Erlend E. Aasland | 2022-11-25 | 1 | -41/+119 |
| | | | | Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> | ||||
* | gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour ↵ | Erlend E. Aasland | 2022-11-12 | 1 | -17/+154 |
| | | | | | | | | | | (#93823) Introduce the autocommit attribute to Connection and the autocommit parameter to connect() for PEP 249-compliant transaction handling. Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Géry Ogam <gery.ogam@gmail.com> | ||||
* | gh-99392: Fix sqlite3 converter recipes (#99393) | naglis | 2022-11-12 | 1 | -3/+22 |
| | |||||
* | Docs: add argument spec to sqlite3 CLI docs (#99200) | Erlend E. Aasland | 2022-11-07 | 1 | -1/+6 |
| | |||||
* | Docs: add `named` to the list of styles in the sqlite3.paramstyle attr docs ↵ | Nick Pope | 2022-11-03 | 1 | -3/+4 |
| | | | | (#99078) | ||||
* | gh-98716: Revert gh-96081: Escape lone stars in sqlite3 docs (#98720) | Erlend E. Aasland | 2022-10-26 | 1 | -5/+5 |
| | |||||
* | gh-97661: Improve accuracy of sqlite3.Cursor.fetchone docs (#97662) | Jia Junjie | 2022-10-05 | 1 | -1/+3 |
| | | | Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | gh-96810: Clarify for which statements sqlite3 implicitly opens transactions ↵ | Erlend E. Aasland | 2022-09-15 | 1 | -1/+2 |
| | | | | (#96832) | ||||
* | gh-96702: Order methods before attrs in sqlite3.Connection docs (#96703) | Erlend E. Aasland | 2022-09-13 | 1 | -97/+96 |
| | |||||
* | Docs: alphabetically order sqlite3.Cursor attrs (#96565) | Erlend E. Aasland | 2022-09-04 | 1 | -30/+31 |
| | |||||
* | gh-96168: Improve sqlite3 dict_factory example (#96457) | Erlend E. Aasland | 2022-09-01 | 1 | -18/+9 |
| | | | | Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> | ||||
* | gh-96414: Inline code examples in sqlite3 docs (#96442) | Erlend E. Aasland | 2022-08-31 | 1 | -14/+380 |
| | |||||
* | Docs: normalise sqlite3 placeholder how-to heading (#96413) | Erlend E. Aasland | 2022-08-30 | 1 | -2/+2 |
| | |||||
* | Docs: normalize SQL style in sqlite3 docs (#96403) | Erlend E. Aasland | 2022-08-29 | 1 | -7/+7 |
| | |||||
* | gh-95432: Add doctests for the sqlite3 docs (#96225) | Erlend E. Aasland | 2022-08-29 | 1 | -64/+125 |
| | | | | | | | As a consequence of the added test, this commit also includes fixes for broken examples. - Add separate namespace for trace tests bco. module level callback - Move more backup and cursor examples under separate namespaces | ||||
* | gh-94635: Frame sqlite3 how-to headings as such & move default adapters to ↵ | C.A.M. Gerlach | 2022-08-24 | 1 | -48/+48 |
| | | | | | | reference (#96136) Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> | ||||
* | gh-96096: Add undocumented SQLITE_OK/DENY/IGNORE sqlite3 constants (#96134) | C.A.M. Gerlach | 2022-08-23 | 1 | -4/+14 |
| | | | | Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> | ||||
* | gh-95432: Add doctest for sqlite3 tutorial (#96193) | Erlend E. Aasland | 2022-08-23 | 1 | -16/+47 |
| | |||||
* | gh-96121: Merge sqlite3.Row examples into sqlite3.Row class doc (#96122) | Erlend E. Aasland | 2022-08-22 | 1 | -56/+18 |
| | | | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | Docs: Fix markup of module name in sqlite3 docs (#96115) | Erlend E. Aasland | 2022-08-19 | 1 | -3/+3 |
| | |||||
* | Doc: Use consistent markup for example Point class in sqlite3 (#96095) | C.A.M. Gerlach | 2022-08-19 | 1 | -3/+3 |
| | |||||
* | Docs: group sqlite3.Connection attributes and methods (#96090) | Erlend E. Aasland | 2022-08-19 | 1 | -39/+37 |
| | |||||
* | gh-94635: Remove sqlite3 doc introduction heading (#96089) | Erlend E. Aasland | 2022-08-19 | 1 | -3/+0 |
| | |||||
* | Docs: Escape lone stars in sqlite3 docs (#96081) | Erlend E. Aasland | 2022-08-18 | 1 | -5/+5 |
| | |||||
* | gh-95271: Rework sqlite3 tutorial (#95749) | Erlend E. Aasland | 2022-08-18 | 1 | -50/+138 |
| | | | | Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> | ||||
* | gh-95273: Improve sqlite3.complete_statement docs (#95840) | Erlend E. Aasland | 2022-08-11 | 1 | -6/+17 |
| | | | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | gh-95273: Reorganize sqlite3 doc module level funcs and vars (#95626) | Erlend E. Aasland | 2022-08-08 | 1 | -158/+156 |
| | | | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | gh-94635: Fixup sqlite3 'Introduction' seealso note (#95751) | Erlend E. Aasland | 2022-08-06 | 1 | -12/+12 |
| | | | | In gh-95269, the seealso note incorrectly ended up in the 'Tutorial' section. | ||||
* | Docs: sqlite3 docs fixup (#95681) | Erlend Egeberg Aasland | 2022-08-04 | 1 | -28/+28 |
| | | | | | - Disable links to the module itself - Fix link indent - Consistent ref markup | ||||
* | gh-95271: Extract placeholders howto from sqlite3 tutorial (#95522) | Erlend Egeberg Aasland | 2022-08-04 | 1 | -26/+38 |
| | | | | Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> | ||||
* | gh-95273: Improve documented return values and exceptions raised for sqlite3 ↵ | Erlend Egeberg Aasland | 2022-08-04 | 1 | -62/+72 |
| | | | | | | class methods (#95530) Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> | ||||
* | Docs: fix two typos in the sqlite3 docs (#95661) | ceh | 2022-08-04 | 1 | -2/+2 |
| | | | | - statment => statement - transaciton => transaction | ||||
* | gh-95273: Align sqlite3 const doc refs with the devguide recommendations ↵ | Erlend Egeberg Aasland | 2022-08-03 | 1 | -39/+39 |
| | | | | (#95525) | ||||
* | Docs: fix incorrect formatting in sqlite3 CLI docs (#95581) | Erlend Egeberg Aasland | 2022-08-02 | 1 | -2/+4 |
| | |||||
* | gh-77617: Add sqlite3 command-line interface (#95026) | Erlend Egeberg Aasland | 2022-08-01 | 1 | -0/+20 |
| | | | Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> | ||||
* | gh-95273: Clarify when sqlite_* attributes are added to sqlite3 exceptions ↵ | Erlend Egeberg Aasland | 2022-08-01 | 1 | -0/+3 |
| | | | | (#95523) | ||||
* | gh-94635: Add Reference, How-to, and Concepts headings to sqlite3 docs (#94636) | Erlend Egeberg Aasland | 2022-07-30 | 1 | -98/+120 |
| | | | Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | gh-95273: Relocate sqlite3 enable load extension note (#95430) | Erlend Egeberg Aasland | 2022-07-29 | 1 | -12/+8 |
| | |||||
* | gh-95432: Fixup sqlite3 tutorial example (#95431) | Erlend Egeberg Aasland | 2022-07-29 | 1 | -5/+5 |
| | | | | - the insert statement should have five placeholders, not four - missing ... in the multiline row list | ||||
* | gh-95273: Improve sqlite3 class descriptions (#95379) | Erlend Egeberg Aasland | 2022-07-29 | 1 | -8/+34 |
| | | | Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | gh-95273: Move sqlite3 executemany examples from reference to tutorial (#95351) | Erlend Egeberg Aasland | 2022-07-29 | 1 | -11/+26 |
| | |||||
* | gh-95273: Condense sqlite3 executescript example (#95383) | Erlend Egeberg Aasland | 2022-07-29 | 1 | -2/+9 |
| | |||||
* | Docs: Fix refs & tweak wording in sqlite3 'Using shortcut methods' | Erlend Egeberg Aasland | 2022-07-28 | 1 | -2/+3 |
| | | | Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> |