Show
Ignore:
Timestamp:
01/13/08 01:22:35 (16 years ago)
Author:
jerome
Message:

Database backends now convert from and to unicode instead of UTF-8.
The data dumper now expects unicode datas from the database.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/pgstorage.py

    r3288 r3291  
    154154                    field = fields[j] 
    155155                    if type(field) == StringType : 
    156                         fields[j] = self.databaseToUserCharset(field)  
     156                        fields[j] = self.databaseToUnicode(field)  
    157157                entries[i] = tuple(fields)     
    158158            return entries