[Zope3-checkins] CVS: Products3/sqliteDA - Adapter.py: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/sqliteDA
In directory cvs.zope.org:/tmp/cvs-serv4450/sqliteDA

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/sqliteDA/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.
#
##############################################################################
"""SQLITE database adapter.

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

import sqlite

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

class sqliteAdapter(ZopeDatabaseAdapter):
    """A sqlite adapter for Zope3"""

    __implements__ = ZopeDatabaseAdapter.__implements__

    def _connection_factory(self):
        """Create a sqlite connection based on the DSN"""
        # XXX this database supports setting the mode
        # of the file. Example:
        # dbi://mydatabase/mode=755

        # XXX The dbname is actually a filename. How should
        # it be modified to stay/get in a specific directory?
        # E.g. var/sqlite/dbname
        
        conn_info = parseDSN(self.dsn)
        return sapdbapi.connect(db=conn_info['dbname'])



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



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

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

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