<html><body><div style="color:#000; background-color:#fff; font-family:tahoma, new york, times, serif;font-size:10pt"><div><font class="Apple-style-span" size="2">Hi all, I wanna get texts from some QLineEdits' and QComboBoxes and store them in Sqlite DB. But I keep gettin the following error, i also tried using following commands that did not worked : </font></div><div><font class="Apple-style-span" size="2"><br></font></div><div><font class="Apple-style-span" size="2">self.info = some_lineEdit.text()</font></div><div><font class="Apple-style-span" size="2">self.info = str(u"%s" % some_lineEdit.text()) </font></div><div><font class="Apple-style-span" size="2">self.info = some_lineEdit.text().toUtf8() </font></div><div><font class="Apple-style-span" size="2">self.info = _fromUtf8(some_lineEdit.text()) </font></div><div><font class="Apple-style-span" size="2"><br></font></div><div><font class="Apple-style-span"
 size="2"><br></font></div><div><font class="Apple-style-span" size="2">sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings.</font></div><div><font class="Apple-style-span" size="2"><br></font></div><div><font class="Apple-style-span" size="2">Everything works fine when i don't enter unicode strings,  so problem is exactly the unicode. Any help is appreciated. Thanks.</font></div></div></body></html>