Changeset 1878
- Timestamp:
- 01/08/06 19:55:37 (3 years ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/django/core/db/backends/mysql.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r1872 r1878 53 53 Gustavo Picon 54 54 Brant Harris 55 hipertracker@gmail.com 55 56 Ian Holsman <http://feh.holsman.net/> 56 57 Kieran Holland <http://www.kieranholland.com> django/trunk/django/core/db/backends/mysql.py
r1744 r1878 66 66 kwargs['port'] = DATABASE_PORT 67 67 self.connection = Database.connect(**kwargs) 68 cursor = self.connection.cursor() 69 if self.connection.get_server_info() >= '4.1': 70 cursor.execute("SET NAMES utf8") 68 71 if DEBUG: 69 return base.CursorDebugWrapper(MysqlDebugWrapper( self.connection.cursor()), self)70 return self.connection.cursor()72 return base.CursorDebugWrapper(MysqlDebugWrapper(cursor), self) 73 return cursor 71 74 72 75 def commit(self):
