Closed GoogleCodeExporter closed 9 years ago
Try adding CHARSET=UTF8 to your connection string:
cnxn = pyodbc.connect('DSN=localhost;CHARSET=UTF8')
Original comment by mkleehammer
on 31 Dec 2009 at 6:33
[deleted comment]
I've had the same issue, which only seems to happen on 64-bit machines.
Here's my setup:
ubuntu 10.4 64-bit
pyodbc-2.1.7
unixODBC-2.2.11-21
freeTDS-0.82
Server:
MS SQL Server 2008
I've traced the problem back to a call to SQLGetData in getdata.cpp. The
function doesn't seem to handle unicode strings correcty on 64-bit systems.
Specifying a charset in the pyodbc.connect() call doesn't fix it. I was able to
fix it by mapping all unicode character types to SQL_C_CHAR, I'm attaching a
diff of the fix.
Daniel Erickson
Concentric Sky, Inc.
www.concentricsky.com
Original comment by danerick...@gmail.com
on 22 Jun 2010 at 9:00
Attachments:
Fixed in 2.1.8.
Thanks.
Original comment by mkleehammer
on 6 Sep 2010 at 6:03
Original comment by mkleehammer
on 21 Nov 2010 at 4:44
Has there been a regression of this patch?
I have pyodbc 3.0.7 and it appears to not have the patch by danerick applied.
I was affected by the problem described here on a 64bit mac (maverics) pulling
data from vertica 6.1.2 using unixodbc 2.3.2
I can confirm that the patch worked nicely.
Original comment by kesten.b...@gmail.com
on 7 May 2014 at 9:51
I'm running pyodbc 3.0.7, unidodbc 2.3.0, vertica 7.1.0 and a 64-bit mac
w/mavericks and it looks like the patch was reverted and putting it back made
everything better.
-Todd
Original comment by todd.ko...@gmail.com
on 28 Jul 2014 at 10:03
[deleted comment]
I'm having this same problem using pyodbc 3.0.7, unixodbc 2.3.2, vertica 6.1.3
on SunOS 5.10. Querying from isql seems to work fine. Querying the same DSN
using pyodbc results in 2 byte unicode returns just as the OP shows. I did try
setting CHARSET with no luck.
I think maybe this issue should be reopened.
Original comment by mverri...@gmail.com
on 29 Sep 2014 at 9:20
I'm having the same issue, with vertica. Please reopen and reapply patch, it's
the only thing that fixes it.
My issues have been detailed here
https://community.vertica.com/vertica/topics/-unrecognized-icu-conversion-error-
using-pyodbc?topic-reply-list%5Bsettings%5D%5Bfilter_by%5D=all&topic-reply-list%
5Bsettings%5D%5Bpage%5D=1#reply_14887740
Original comment by RyanCaco...@gmail.com
on 14 Oct 2014 at 4:40
Change is on line 322 in 3.0.7.
After many hours of debugging this was also the only fix that got my issues
fixed.
See this for related info:
https://github.com/lionheart/django-pyodbc/issues/35
Original comment by adrian...@gmail.com
on 20 Jan 2015 at 5:57
Original issue reported on code.google.com by
martijn....@gmail.com
on 12 Nov 2009 at 5:52