Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #58475

Re: Trouble with utf-8 values

From Ben Finney <ben+python@benfinney.id.au>
Subject Re: Trouble with utf-8 values
Date 2013-11-05 12:36 +1100
References <5278496E.2000203@fam-goebel.de>
Newsgroups comp.lang.python
Message-ID <mailman.2039.1383615379.18130.python-list@python.org> (permalink)

Show all headers | View raw


Ulrich Goebel <ml@fam-goebel.de> writes:

> I have an object (a variable) name

This confuses me. Is it an object, a variable, or a name?

> which gets its value from a PostgreSQL database via a SELECT
> statement, an it sometimes has german special characters as ß, ä, ö...

What is the type of that object? You can interrogate Python for the
answer, by using ‘type(foo)’ which will return the type of the object
named by “foo”.

> Then I would like to insert that value into a table in a SQLite
> database. So I make a cursor cur on the table and prepare a SQL
> statement like this:
>
> sql = 'insert into tbl values(?)'
> cur.execute(sql, (name,))

What version of Python are you running?

Do you get different results in Python 2 versus Python 3? One of the
biggest improvements in Python 3 is the proper handling of Unicode, with
more explicit rejection of ambiguity between bytes versus text.

-- 
 \      “The face of a child can say it all, especially the mouth part |
  `\                                        of the face.” —Jack Handey |
_o__)                                                                  |
Ben Finney

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Trouble with utf-8 values Ben Finney <ben+python@benfinney.id.au> - 2013-11-05 12:36 +1100

csiph-web