Commit Graph

31 Commits

Author SHA1 Message Date
adustman
a63002ecb5 * Removed some old-style Python stuff from setup.py
* Added a bit of documentation on ssl parameter to Connection

 * Version 1.1.5
2004-09-19 21:38:08 +00:00
adustman
075eea32f3 Version 1.1.4
* setup.py: changed include and library path order

 * MySQLdb/connections.py: fix super class reference in autocommit()

 * Tested against MySQL-4.1.4a with InnoDB tables
2004-09-11 07:25:34 +00:00
adustman
145565b3e4 Version 1.1.3
* _mysql.c: restored missing mysql_errno() call (bug #1023466)

 * _mysql.c: Only try to use SSL support if HAVE_OPENSSL is defined.
   Raise NotSupportedError if ssl is requested but not available.
2004-09-08 01:39:46 +00:00
adustman
ceabe0ed1b General cleanups.
* Turn autocommit off initially

 * Add support for mysql_autocommit, _commit, and _rollback API functions
   (new in MySQL-4.1)

 * Remove Connection.begin(); use SQL BEGIN or START TRANSACTION instead

 * pytimes (standard datetime module) is now the default implementation

 * Detect and handle MySQL-4.1 and newer TIMESTAMP (looks like DATETIME)

 * UnicodeType and ObjectType now always handled (required features)

 * Ditch support for L at the end of long integer

 * Remove z and crypt libs if building for Windows

 * Version 1.1.2
2004-09-06 21:53:40 +00:00
adustman
69efaa470e Bump version. Update README. Convert all classes to new-style. 2004-06-07 03:44:39 +00:00
adustman
1fdb7422a6 Initial conversion to modern Python. 2004-05-19 03:54:01 +00:00
adustman
9f2d4f50fe Fix bug #902024 2004-02-29 02:22:59 +00:00
adustman
59913d32f4 * 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.
2003-12-30 01:30:36 +00:00
adustman
ff06467924 Version bump 2003-11-23 22:04:04 +00:00
adustman
2f298c15f8 Version bump 2003-09-07 02:00:34 +00:00
adustman
b6509148a2 Bump version numbers. 2003-07-08 06:34:27 +00:00
adustman
aea6704864 Embedded server support 2002-08-22 21:12:02 +00:00
adustman
43994da567 0.9.2 (finally) 2002-07-21 04:05:17 +00:00
adustman
b6323b0477 Version 0.9.2c3, see CHANGELOG 2002-07-10 15:18:13 +00:00
adustman
0983b391d7 Smack my version up 2002-06-24 18:27:39 +00:00
adustman
05199fb0f9 Mostly documentation updates, and some code cleanups 2002-06-18 01:01:47 +00:00
adustman
17bbd326a9 Version bump 2002-04-28 18:32:06 +00:00
adustman
127059fa73 Bump version. Minor Alpha Linux update. Clear errorhandler on close. 2002-03-14 20:43:51 +00:00
adustman
72f38a531b Verision bump. 2002-01-25 20:18:18 +00:00
adustman
a18138516e 0.9.2 alpha 1 2001-12-23 21:39:31 +00:00
adustman
1f9f5ded7a 0.9.0 updates 2001-10-17 03:21:22 +00:00
adustman
b0b1a82c59 import Set 2001-10-13 14:06:27 +00:00
adustman
aad9f23a54 Update to 0.9.1c2. 2001-09-20 17:15:02 +00:00
adustman
70afb08b30 Change version number, back out memory changes. 2001-09-06 03:04:26 +00:00
adustman
c613b7a1c0 Minor fixes for 1.0.0. 2001-07-11 18:13:09 +00:00
adustman
8a123d5526 Update version number. 2001-06-04 16:55:04 +00:00
adustman
aa6f485d50 Clean up some import statements, bump versions to 0.9.0c2. 2001-05-24 15:27:17 +00:00
adustman
702b563c6e 0.9.0c1 minor edit. 2001-05-23 02:12:10 +00:00
adustman
ce00d83836 Smash data into two separate modules: sets and times. I never liked
that name anyway.

Set has been extended somewhat. The comparision operators really only
work properly with Python 2.1, due to the limitations of __cmp__.
Set also uses the binary operators (&, |, ^), since these make somewhat
more sense than the arithmetic ones, though there is no good analog for
- (if only there were a nand operator...)

Bump the version to 0.9.0b3. This is not the actual 0.9.0b3 release yet,
however. I want to do some more insanity checking. But almost ready for
some candidate releases.
2001-05-12 04:30:34 +00:00
adustman
9c6aaae1eb More major code heaving.
All the threading stuff is ripped out and burned.
Too much code for not enough benefit. Still thread-safe,
just don't share connections.

Made a nice Set class for SET columns.

Updated the docs.
2001-05-11 05:07:33 +00:00
adustman
fce05481aa Initial revision 2001-05-09 02:23:14 +00:00