¡@

Home 

python Programming Glossary: collation

Help me understand the difference between CLOBs and BLOBs in Oracle

http://stackoverflow.com/questions/1018073/help-me-understand-the-difference-between-clobs-and-blobs-in-oracle

share improve this question CLOB is encoding and collation sensitive BLOB is not. When you write into a CLOB using say..

How do I sort unicode strings alphabetically in Python?

http://stackoverflow.com/questions/1097908/how-do-i-sort-unicode-strings-alphabetically-in-python

with that python sorting unicode internationalization collation share improve this question IBM's ICU library does that.. are briefly summarized here http unicode.org faq collation.html#13 . These are rather exotic special cases which should..

How to set the encoding for the tables' char columns in django?

http://stackoverflow.com/questions/1198486/how-to-set-the-encoding-for-the-tables-char-columns-in-django

this question Django does not specify charset and collation in CREATE TABLE statements. Everything is determined by database..

MySQL “incorrect string value” error when save unicode string in Django

http://stackoverflow.com/questions/2108824/mysql-incorrect-string-value-error-when-save-unicode-string-in-django

charsets 8 rows in set 0.00 sec Table charset and collation Table auth_user has utf 8 charset with utf8_general_ci collation... Table auth_user has utf 8 charset with utf8_general_ci collation. Results of UPDATE command It didn't raise any error when updating.. mysql SHOW CHARACTER SET Charset Description Default collation Maxlen ... utf8 UTF 8 Unicode utf8_general_ci 3 ... But..

Execute sqlite3 “dot” commands from Python or register collation in command line utility

http://stackoverflow.com/questions/2346074/execute-sqlite3-dot-commands-from-python-or-register-collation-in-command-line

sqlite3 &ldquo dot&rdquo commands from Python or register collation in command line utility My sqlite3 database contains a collate.. to prevent accidentally neglecting to use the necessary collation. However this means when running sqlite3 from the command line.. from the command line and not from my Python code the collation referenced in the schema is not present and I'm unable to use..

Can you achieve a case insensitive 'unique' constraint in Sqlite3 (with Django)?

http://stackoverflow.com/questions/276656/can-you-achieve-a-case-insensitive-unique-constraint-in-sqlite3-with-django

to the following The following example shows a custom collation that sorts œthe wrong way import sqlite3 def collate_reverse.. cmp string1 string2 con sqlite3.connect memory con.create_collation reverse collate_reverse cur con.cursor cur.execute create table..

Python not sorting unicode properly. Strcoll doesn't help

http://stackoverflow.com/questions/3412933/python-not-sorting-unicode-properly-strcoll-doesnt-help

help I've got a problem with sorting lists using unicode collation in Python 2.5.1 and 2.6.5 on OSX as well as on Linux. import..

UnicodeEncodeError: 'latin-1' codec can't encode character

http://stackoverflow.com/questions/3942888/unicodeencodeerror-latin-1-codec-cant-encode-character

UTF 8 strings by setting the database connection and the collation on string columns so it can get case insensitive comparison..

using pyodbc on linux to insert unicode or utf-8 chars in a nvarchar mssql field

http://stackoverflow.com/questions/947077/using-pyodbc-on-linux-to-insert-unicode-or-utf-8-chars-in-a-nvarchar-mssql-field

problem See that MS page for example. For Unicode fields collation is used only to define the sort order in the column not to specify..