[Zope3-checkins] CVS: Products3/sybaseDA - 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:19 -0500


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

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/sybaseDA/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.
#
##############################################################################
"""Sybase database adapter.

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

import Sybase 

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

class sybaseAdapter(ZopeDatabaseAdapter):
    """A Sybase adapter for Zope3"""

    __implements__ = ZopeDatabaseAdapter.__implements__
    
    # The module declares itself as threadsafe in level 2
    threadsafety = 2
    paramstyle = 'named'

    def _connection_factory(self):
        """Create a Sybase connection based on the DSN"""
        conn_info = parseDSN(self.dsn)
        # XXX we need to incorporate the port information 
        # in here too.
        return Sybase.connect(conn_info['host'],
                              conn_info['username'],
                              conn_info['password'],
                              database=conn_info['dbname'])



=== Added File Products3/sybaseDA/TODO ===
    -   Typkompatibilitaet
    -   "named"-paramstyle will "SELECt .... @name" statt "SELECT ... :name". Passt das?
    -   Echte Datenbank


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



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

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

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