Mercurial > p > mysql-python > mysqldb-2
comparison HISTORY @ 9:0e37ee00beb7 MySQLdb
Merge changes from 1.2 branch (r470:483): Mostly build-related.
author | adustman |
---|---|
date | Mon, 26 Feb 2007 00:55:29 +0000 |
parents | df195ac92df6 |
children | d9bb912776a5 |
comparison
equal
deleted
inserted
replaced
8:fa8974a41c76 | 9:0e37ee00beb7 |
---|---|
1 ===================== | |
2 What's new in 1.2.2 | |
3 ===================== | |
4 | |
5 The build system has been completely redone and should now build | |
6 on Windows without any patching; uses setuptools. | |
7 | |
8 Added compatibility for Python 2.5, including support for with statement. | |
9 | |
10 connection.ping() now takes an optional boolean argument which can | |
11 enable (or disable) automatic reconnection. | |
12 | |
13 Support returning SET columns as Python sets was removed due to an | |
14 API bug in MySQL; corresponding test removed. | |
15 | |
16 Added a test for single-character CHAR columns. | |
17 | |
18 BLOB columns are now returned as Python strings instead of byte arrays. | |
19 | |
20 BINARY character columns are always returned as Python strings, and not | |
21 unicode. | |
22 | |
23 Fixed a bug introduced in 1.2.1 where the new SHOW WARNINGS support broke | |
24 SSCursor. | |
25 | |
26 Only encode the query (convert to a string) when it is a unicode instance; | |
27 re-encoding encoded strings would break things. | |
28 | |
29 Make a deep copy of conv when connecting, since it can be modified. | |
30 | |
31 Added support for new VARCHAR and BIT column types. | |
32 | |
33 | |
1 ======================== | 34 ======================== |
2 What's new in 1.2.1_p2 | 35 What's new in 1.2.1_p2 |
3 ======================== | 36 ======================== |
4 | 37 |
5 There are some minor build fixes which probably only affect MySQL | 38 There are some minor build fixes which probably only affect MySQL |