[issue8192] SQLite3 PRAGMA table_info doesn't respect database on Win32

2014-06-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: Thanks for the check. -- nosy: +loewis resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue8192] SQLite3 PRAGMA table_info doesn't respect database on Win32

2014-06-22 Thread Amadu Durham
Amadu Durham added the comment: Tested in both versions 2.7 and 3.4 this sqlite3 inconsistency has been corrected and no longer exists. -- nosy: +amadu type: -> behavior versions: +Python 2.7, Python 3.4 -Python 2.6 ___ Python tracker

[issue8192] SQLite3 PRAGMA table_info doesn't respect database on Win32

2010-07-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: python2.7 includes a newer version of sqlite. Does the problem still reproduces there? -- nosy: +amaury.forgeotdarc ___ Python tracker __

[issue8192] SQLite3 PRAGMA table_info doesn't respect database on Win32

2010-03-21 Thread Christoph Burgmer
New submission from Christoph Burgmer : 'PRAGMA database.table_info("SOME_TABLE_NAME")' will report table metadata for the given database. The main database called 'main', can be extended by attaching further databases via 'ATTACH DATABASE'. The above PRAGMA should respect the chosen database,