diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-05-26 07:05:20 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-05-26 07:05:20 +0000 |
commit | b5e24003736f0598bcbf4b8ecc3819897b105e95 (patch) | |
tree | 43445df0813df435349ff14b8af025f0cff6ae0c /databases/py-MySQLdb/pkg-descr | |
parent | 6ffb1e67a7fe9b17c47f7fb477a2019462ce5819 (diff) |
Initial import of py-MySQLdb.
py-MySQLdb is a Python module to access MySQL databases, very similar to the one
in ports/databases/py-MySQL, but unlike the latter it is actively maintained
and conform to the DB-API v2.0. Therefore it should be used instead of the oldest
one by all who want retain maintainability of their Python DB applications in
the future.
PR: 18383
Submitted by: sobomax
Notes
Notes:
svn path=/head/; revision=28765
Diffstat (limited to 'databases/py-MySQLdb/pkg-descr')
-rw-r--r-- | databases/py-MySQLdb/pkg-descr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/databases/py-MySQLdb/pkg-descr b/databases/py-MySQLdb/pkg-descr new file mode 100644 index 000000000000..5c4095d67f35 --- /dev/null +++ b/databases/py-MySQLdb/pkg-descr @@ -0,0 +1,15 @@ +You can easily access a MySQL database through the Python MySQL module. + +This module should be mostly compatible with an older interface written by +Joe Skinner and others. However, the older version is + + a) not thread-friendly (database operations could cause all other threads to + block), + b) written for MySQL 3.21 (does not compile against newer versions without + patches), + c) apparently not actively maintained. + +MySQLdb is a completely new module, distributed free of charge under a license +derived from the Python license. + +WWW: http://dustman.net/andy/python/ |