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

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


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

Added Files:
	Adapter.py TODO __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/odbcDA/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.
#
##############################################################################
"""ODBC database adapter.

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

import mxODBC

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

class odbcAdapter(ZopeDatabaseAdapter):
    """An ODBC adapter for Zope3"""

    __implements__ = ZopeDatabaseAdapter.__implements__

    def _connection_factory(self):
        """Create an ODBC connection based on the DSN"""
        conn_info = parseDSN(self.dsn)
        return mxODBC.connect(user=conn_info['username'],
                            password=conn_info['password'],
                            database=conn_info['dbname'],
                            host=conn_info['host'])


=== Added File Products3/odbcDA/TODO ===
    -   Know the threadsafety level
    -   Test on a real database
    -   Typeconversion specialities?


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



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

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

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