Search Postgresql Archives

pymssql: Problem with Unicode string

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello!
I am using pymssql-1.9.908. And I have MSSQL2008 database server.
I ran following code from python 2.6:
-----------------------------------
        import pymssql
        conn = pymssql.connect(host='testserver', user='sa',
password='sa', database='testdb', as_dict=True)
        crms = conn.cursor()
        crms.execute('SELECT cc_Name FROM tblUsers')
        for line in crms.fetchall():
            print 'cc_Name:', self.unicodify(line['cc_Name'])
            break
        crms.close()
-----------------------------------
the result is-> cc_Name: ?????, ???
But the actual data is "ÐÐÐÐÐ, ÑÐÑ" and I expect that the output would
be "cc_Name: ÐÐÐÐÐ, ÑÐÑ".

Here is my question:
How to get Unicode data from MSSQL database using pymssql library?

Any suggestion would be highly appreciated!
regards,
Orgil.D

-- 
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux