Changeset 1879
- Timestamp:
- 01/08/06 19:57:26 (3 years ago)
- Files:
-
- django/branches/magic-removal/AUTHORS (modified) (1 diff)
- django/branches/magic-removal/django/db/backends/mysql/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/AUTHORS
r1873 r1879 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/branches/magic-removal/django/db/backends/mysql/base.py
r1757 r1879 65 65 kwargs['port'] = DATABASE_PORT 66 66 self.connection = Database.connect(**kwargs) 67 cursor = self.connection.cursor() 68 if self.connection.get_server_info() >= '4.1': 69 cursor.execute("SET NAMES utf8") 67 70 if DEBUG: 68 return util.CursorDebugWrapper(MysqlDebugWrapper(self.connection.cursor()), self)69 return self.connection.cursor()71 return base.CursorDebugWrapper(MysqlDebugWrapper(cursor), self) 72 return cursor 70 73 71 74 def commit(self):
