On 01/-10/-28163 02:59 PM, Marc Muehlfeld wrote:
Hi,
TEST = cursor.fetchone()
print TEST[0]
print TEST
When I run this script It prints me:
München
('M\xc3\xbcnchen',)
Why is the Umlaut of TEST[0] printed and not from TEST?
When you print a string, it simply prints it, control character
Marc Muehlfeld wrote:
Hi,
I'm doing my first steps with python and I have a problem with
understanding an encoding problem I have. My script:
import os
os.environ["NLS_LANG"] = "German_Germany.UTF8"
import cx_Oracle
connection = cx_Oracle.Connection("username/password@SID")
cursor = connectio
Hi,
I'm doing my first steps with python and I have a problem with understanding
an encoding problem I have. My script:
import os
os.environ["NLS_LANG"] = "German_Germany.UTF8"
import cx_Oracle
connection = cx_Oracle.Connection("username/password@SID")
cursor = connection.cursor()
cursor.execu