adodb_mysql.py :  » Database » ADOdb » adodb-220 » adodb » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Database » ADOdb 
ADOdb » adodb 220 » adodb » adodb_mysql.py
########################################################################
# Vers 2.10 16 July 2008, (c)2004-2008 John Lim (jlim#natsoft.com) All Rights Reserved
# Released under a BSD-style license. See LICENSE.txt.
# Download: http://adodb.sourceforge.net/#pydownload
########################################################################

import adodb,re
import MySQLdb

#Thread Safety= 1 module
#Param Style  = format
 
try:
    True, False
except NameError:
    # Maintain compatibility with Python 2.2
    True, False = 1, 0
    
class adodb_mysql(adodb.ADOConnection):
    databaseType = 'mysql'
    dataProvider = 'mysql'
    metaColSQL = "SHOW COLUMNS FROM %s"
    
    sysDate = 'CURDATE()'
    sysTimeStamp = 'NOW()'
  
   
    def __init__(self):
        pass

    def Module(self):
        return MySQLdb
    
    def _connect(self,host=None,user=None,password=None,database=None):
        self._conn = MySQLdb.connect(host, user, password, database)        

    def _newcursor(self,rs):
        return cursor_mysql(rs,self)

    def BeginTrans(self):
        if self._autocommit:
            self._autocommit = False
        self.Execute('set autocommit=0')
        #self._conn.Execute('begin')
        
    def RollbackTrans(self):
        self.Execute('rollback')
        self.Execute('set autocommit=1')
        self._autocommit = True

    def SelectLimit(self,sql,limit,offset=-1,params=None):
        if (offset >= 0): offset = str(offset)+","
        else: offset = ""
        return self.Execute(sql+" LIMIT "+offset+str(limit),params)
    
    def CommitTrans(self):
        self.Execute('commit')
        self.Execute('set autocommit=1')
        self._autocommit = True

    def UpdateBlob(self,table,field,blob,where,blobtype='BLOB'):
        self.Execute("update %s set %s='%s' WHERE %s" % (table,field,self.addq(blob),where))
 
    def qstr(self,s):
        return "'%s'" % self._conn.escape_string(s)

    def MetaColumns(self, table):
        sql = self.metaColSQL % table
        rs = self.Execute(sql)
        arr = []
        reFloat = re.compile("^(.+)\\((\\d+),(\\d+)")
        reInt = re.compile("^(.+)\\((\\d+)")
        while not rs.EOF:
            typeF = rs.fields[1]
            if typeF.find('(')>=0:
                if typeF.find(',')>=0:
                    m = reFloat.search(typeF) 
                else:
                    m = reInt.search(typeF)
                if m:
                    gps = m.groups()
                    type = gps[0]
                    size = gps[1]
                else:
                    type = typeF
                    size = -1
            else:
                type = typeF
                size = -1
                
            arr.append((rs.fields[0],type,size))
            rs.MoveNext()
        return arr
            
class cursor_mysql(adodb.ADOCursor):
    def __init__(self,rs,conn):
        adodb.ADOCursor.__init__(self,rs,conn)
        #self._insertid = rs.insert_id()
        self._insertid = rs.lastrowid    
if __name__ == '__main__':
    db = adodb.NewADOConnection('mysql')
    db.Connect('localhost','root','','northwind')
    for r in db.Execute('select * from adoxyz'):
        print r
    adodb.Test(db)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.