[Zope3-checkins] CVS: Products3/MySQLdbDA - Adapter.py:1.1 __init__.py:1.1 configure.zcml:1.1

Christian Theune ct@gocept.com
Thu, 12 Dec 2002 08:24:14 -0500


Update of /cvs-repository/Products3/MySQLdbDA
In directory cvs.zope.org:/tmp/cvs-serv4450/MySQLdbDA

Added Files:
	Adapter.py __init__.py configure.zcml 
Log Message:
initial checkin for the "database adapter collection"

those are initial drafts. The mysql adapter is tested and able to connect and query
as well as the sapdb. Postgres has already been there.

There will be a lot of issues with converting custom data types into
the zopish ones (see BLOB/CLOB...).

The other database adapters aren't tested anyway, but probably work,
as it has mostly been an "edit and replace" work. 

(Is that a sign of refactoring?)


=== Added File Products3/MySQLdbDA/Adapter.py ===
##############################################################################
#
# Copyright (c) 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""MySQL database adapter.

$Id: Adapter.py,v 1.1 2002/12/12 13:24:13 ctheune Exp $
"""

import MySQLdb

from Zope.App.RDB.ZopeDatabaseAdapter import \
    ZopeDatabaseAdapter, parseDSN

dsn2option_mapping = {'dbname':'dbname',
                      'port':'port',
                      'host':'host',
                      'username':'user',
                      'password':'passwd'}

class MySQLdbAdapter(ZopeDatabaseAdapter):
    """A MySQLdb adapter for Zope3"""

    __implements__ = ZopeDatabaseAdapter.__implements__

    def _connection_factory(self):
        """Create a MySQLdb DBI connection based on the DSN"""

        conn_info = parseDSN(self.dsn)
        print conn_info
        return MySQLdb.Connect(db=conn_info['dbname'],
                             host=conn_info['host'],
                             user=conn_info['username'],
                             passwd=conn_info['password'],
                             port=int(conn_info['port']))
                      


=== Added File Products3/MySQLdbDA/__init__.py ===
# make this a python package



=== Added File Products3/MySQLdbDA/configure.zcml ===
<zopeConfigure
    xmlns='http://namespaces.zope.org/zope'>

    <content class=".Adapter.MySQLdbAdapter">
        <factory id="MySQLdbDA"
                permission="Zope.Public" />
        <require permission="Zope.Public"
                interface="Zope.App.RDB.IZopeDatabaseAdapter." />
    </content>

 <include package=".browser" />
 </zopeConfigure>