In my environment, we are connecting to the sqlite file using pysqlite2.dbapi2. 
 After upgrading from sqlite 3.5.4 to 3.7.7.1, iterating over the results of a 
cursor.execute() are yielding different keys than they did pre-upgrade.  My 
query is of the form:

SELECT table.column1, table.column2 FROM table;

With sqlite 3.5.4, when iterating over the cursor, the keys in each result row 
were named "table.column1" and "table.column2" as specified in the query.  
After the upgrade to sqlite 3.7.7.1, the keys in each result row do not include 
the table name in the key, but are solely the column name.  Is this expected?

Thanks.

Jamie


_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to