mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 19:31:54 +08:00
* Check for module initialization failure (extremely rare)
* The MySQL FIELD_TYPE converter can now be a sequence of 2-tuples. Item 0 is a bit mask (using FLAG.*) which must be matched. This should be an integer. Item 1 is the conversion function. If item 0 is not an integer, then this function is considered the default converter for this FIELD_TYPE. Note that these tuples are considered when the query has been executed and the result is available, so it doesn't add a per-row overhead. * As a result of the above, BINARY BLOB fields are now returned as character arrays using the array.array class. Non-BINARY BLOB fields (i.e. TEXT) are returned as strings. If unicode is enabled, they are returned as unicode strings. * Bump version to 0.9.3b3.
This commit is contained in:
@ -18,7 +18,7 @@ embedded_server = (mysqlclient == 'mysqld')
|
||||
name = "MySQL-%s" % os.path.basename(sys.executable)
|
||||
if embedded_server:
|
||||
name = name + "-embedded"
|
||||
version = "0.9.3b2"
|
||||
version = "0.9.3b3"
|
||||
|
||||
# include files and library locations should cover most platforms
|
||||
include_dirs = [
|
||||
@ -88,10 +88,10 @@ long_description = \
|
||||
MySQLdb is an interface to the popular MySQL database server for Python.
|
||||
The design goals are:
|
||||
|
||||
- Compliance with Python database API version 2.0
|
||||
- Thread-safety
|
||||
- Thread-friendliness (threads will not block each other)
|
||||
- Compatibility with MySQL-3.22 and later
|
||||
- Compliance with Python database API version 2.0
|
||||
- Thread-safety
|
||||
- Thread-friendliness (threads will not block each other)
|
||||
- Compatibility with MySQL-3.22 and later
|
||||
|
||||
This module should be mostly compatible with an older interface
|
||||
written by Joe Skinner and others. However, the older version is
|
||||
|
Reference in New Issue
Block a user