What steps will reproduce the problem? 1. In SQL Server have a table with the column of bit type, and some rows where the value of that column is 1. 2. Write a simple code retrieving the data. 3. Run the script.
What is the expected output? What do you see instead? Expected output is value "True" for that column: it is converted automatically to the Python "bool" type, so "1" should become "True". Instead, I see "False".
What version of the product are you using? On what operating system? Windows7, Python 3.3.2, pypyodbc-1.1.1-py3.3, SQL Server 10.0.4000, driver "SQL Server Native Client 10.0"
Please provide any additional information below.
Comment #1
Posted on Jul 5, 2013 by Massive OxJust re-tested it on Linux, with both native microsoft driver and FreeTDS. The same thing happens, so the problem is certainly in pypyodbc code.
Comment #2
Posted on Jul 5, 2013 by Massive OxI think I found the bug. This will be one character fix.
In pypyodbc.py in line 578, instead of
lambda x:x=='1'
should be:
lambda x:x==b'1'
Can somebody do an official code fix?
Comment #3
Posted on Jul 6, 2013 by Helpful CamelHi, Thanks for reporting this and the fix. I have updated the source code in GitHub:
https://github.com/jiangwen365/pypyodbc/blob/master/pypyodbc.py
Comment #4
Posted on Jul 8, 2013 by Massive OxSorry, your fix does not work in Python3. You effectively call: bytes('1') which gives an error: TypeError: string argument without an encoding I guess, you did not try the fix in Python3.
If you use bytes() function, it should be bytes('1', 'ascii') I understand it is a little tricky to support both Python2 and Python3. For me, the "b'1'" worked fine. Can you try it in Python2? If it works, then you can fix it the way I suggested.
Comment #5
Posted on Jul 8, 2013 by Massive OxOr you can simply fix the line 42 like this:
str_8b = lambda s: bytes(s, 'ascii')
Comment #6
Posted on Jul 9, 2013 by Helpful CamelHi, yes, that does work, I have updated the source code in GitHub:
https://github.com/jiangwen365/pypyodbc/blob/master/pypyodbc.py
Can you try again and see if it works?
Comment #7
Posted on Jul 9, 2013 by Massive OxI already tried this by fixing the code in my own copy of the module.
Comment #8
Posted on Jul 11, 2013 by Helpful Camelfixed in version 1.1.5
Status: Fixed
Labels:
Type-Defect
Priority-Medium