Update the table of contents and fix a few typos.
This commit is contained in:
parent
0cc59f7e0d
commit
9cffe03581
15
pep-0249.txt
15
pep-0249.txt
|
@ -22,10 +22,15 @@ Introduction
|
||||||
* Module Interface
|
* Module Interface
|
||||||
* Connection Objects
|
* Connection Objects
|
||||||
* Cursor Objects
|
* Cursor Objects
|
||||||
* DBI Helper Objects
|
|
||||||
* Type Objects and Constructors
|
* Type Objects and Constructors
|
||||||
* Implementation Hints
|
* Implementation Hints for Module Authors
|
||||||
* Major Changes from 1.0 to 2.0
|
* Optional DB API Extensions
|
||||||
|
* Optional Error Handling Extensions
|
||||||
|
* Frequently Asked Questions
|
||||||
|
* Major Changes from Version 1.0 to Version 2.0
|
||||||
|
* Open Issues
|
||||||
|
* Footnotes
|
||||||
|
* Acknowledgements
|
||||||
|
|
||||||
Comments and questions about this specification may be directed
|
Comments and questions about this specification may be directed
|
||||||
to the SIG for Database Interfacing with Python
|
to the SIG for Database Interfacing with Python
|
||||||
|
@ -687,7 +692,7 @@ Optional DB API Extensions
|
||||||
Connection Attributes .Error, .ProgrammingError, etc.
|
Connection Attributes .Error, .ProgrammingError, etc.
|
||||||
|
|
||||||
All exception classes defined by the DB API standard should be
|
All exception classes defined by the DB API standard should be
|
||||||
exposed on the Connection objects are attributes (in addition
|
exposed on the Connection objects as attributes (in addition
|
||||||
to being available at module scope).
|
to being available at module scope).
|
||||||
|
|
||||||
These attributes simplify error handling in multi-connection
|
These attributes simplify error handling in multi-connection
|
||||||
|
@ -792,7 +797,7 @@ Optional DB API Extensions
|
||||||
Warning Message: "DB-API extension cursor.lastrowid used"
|
Warning Message: "DB-API extension cursor.lastrowid used"
|
||||||
|
|
||||||
|
|
||||||
Optional Error Handling Extension
|
Optional Error Handling Extensions
|
||||||
|
|
||||||
The core DB API specification only introduces a set of exceptions
|
The core DB API specification only introduces a set of exceptions
|
||||||
which can be raised to report errors to the user. In some cases,
|
which can be raised to report errors to the user. In some cases,
|
||||||
|
|
Loading…
Reference in New Issue