Re: Incomplete description using sqlite3

2017-11-07 Thread Sibylle Koczian
Am 06.11.2017 um 23:40 schrieb Skip Montanaro: I'm using sqlite3 (2.6.0, SQLite version 3.13.0, Python 2.7.13) and was hoping to introspect the types of a table using the cursor's description attribute. PEP 249 states: "The first two items (name and type_code) are mandatory..." I tried this query

Incomplete description using sqlite3

2017-11-06 Thread Skip Montanaro
I'm using sqlite3 (2.6.0, SQLite version 3.13.0, Python 2.7.13) and was hoping to introspect the types of a table using the cursor's description attribute. PEP 249 states: "The first two items (name and type_code) are mandatory..." I tried this query: conn = sqlite3("/some/existing/database") curs