What steps will reproduce the problem?
- create a connection and cursor using pyodbc
- run the same query twice
- while doing that inspect traffic with a network sniffer such as wireshark
What is the expected output? What do you see instead?
Expected output is to see the readable SQL statement go over the line once, then the second time just binary communication. Instead I can read the statement twice in the package sniffer
import pyodbc cnxn = pyodbc.connect('DRIVER=SQL Server;SERVER=XXX;UID=XXX;PWD=XXX;') cursor = cnxn.cursor() x = '--I can read this\nselect 1' cursor.execute(x) row = cursor.fetchone() cursor.execute(x) row = cursor.fetchone()
What version of the product are you using? On what operating system?
Latest pyodbc python 2.7 windows with sql server
Please provide any additional information below.
The line
if (pSql != cur->pPreparedSQL)
in params.cpp seems to compare two pointers to python objects rather than their string content for unicity. That's a hunch, I'm not a c professional and don't know how to debug c
Comment #1
Posted on Jan 24, 2014 by Happy BirdI have to withdraw this defect-report. I was testing this with a non-parameterized test-query which is smartly optimized away. In 'real life' queries this works as expected.
Comment #2
Posted on Feb 3, 2014 by Helpful DogThanks for the follow up comment! Saved me some time :)
Good luck and I'm impressed that you were analyzing the logs in the first place.
Comment #3
Posted on Feb 3, 2014 by Happy BirdActually there's a layer more to this:
I was stumped to find out sql server native driver fakes the preparation and just internally caches the sql text itself. I can see, stepping through the C code in visual studio, pyodbc correctly skipping preparation after the first run, then on the single "sqlexec" call immediately the entire statement is sent over the line again and again. I 'fixed' some long text query by reworking to a stored procedure.
I'm using sql server express 2008 and the behaviour is undenyable.
Thanks.
Robert
Status: NoFix
Labels:
Type-Defect
Priority-Medium