`
忧里修斯
  • 浏览: 440163 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

Python sqllit实例

阅读更多
1、操作数据库
# -*- coding: UTF-8  -*-
'''
Created on 2010-6-7

@author: qxf
'''
import sys
import os
from sqlite3 import connect, Connection

import UpdateLog


class VisitSqlite(object):
    def __init__(self, dbname, tablename):
        self.dbname = dbname
        self.tablename = tablename
        self.__myInit()

    #表格初始化函数,若不存在,则新建表
    def __myInit(self):
        """
        如果数据库不存在,则创建数据库并新建数据库所需要的表
        """
        if not os.path.exists(self.dbname):
            connect(self.dbname)
            UpdateLog.log("DateBase has been created!")
        
            #下载任务表  TaskList
    #        strSql='create table TaskList 
    #        (gameID TEXT(64) primary key not null,\项目ID
    #        TaskState TEXT(64),\任务状态
    #        InstallMode TEXT(64),\安装方式 
    #        updateQz integer,\是否强制升级
    #        DownFileNumber integer,\文件数量
    #        MD5 TEXT(255),\MD5 值
    #        InstallPacketPath TEXT(255),\安装原路径
    #        InstallPacketTempPath TEXT(255),\安装临时路径
    #        DownOppPath TEXT(255),\下载的相对路径
    #        SetupFile TEXT(255),\安装包可执行文件路径
    #        szReleaseTime  TEXT(32),\发布时间
    #        iErroTimes integer,\安装失败次数
    #        szVestion TEXT(32),\版本信息
    #        rateOfLoad integer,\下载进度
    #        rateOfSetup integer,\安装进度
    #        IsReboot integer,\重启标志
    #        zipSize integer,\文件大小
    #        FileSize integer,\解压后大小
    #        dimRedu integer,\冗余量
    #        Flag1 TEXT(32),\预留字段1
    #        Flag2 TEXT(32),\预留字段2
    #        Flag3 TEXT(32) )预留字段3
    #        '''
            
            strSql='''create table TaskList 
            (id integer primary key autoincrement,
            gameID TEXT(64),\
            TaskState TEXT(64),\
            InstallMode TEXT(64),\
            updateQz integer,\
            DownFileNumber integer,\
            MD5 TEXT(255),\
            InstallPacketPath TEXT(255),\
            InstallPacketTempPath TEXT(255),\
            DownOppPath TEXT(255),\
            SetupFile TEXT(255),\
            szReleaseTime  TEXT(32),\
            iErroTimes integer,\
            szVestion TEXT(32),\
            rateOfLoad integer,\
            rateOfSetup integer,\
            IsReboot integer,\
            zipSize integer,\
            FileSize integer,\
            dimRedu integer,\
            Flag1 TEXT(32),\
            Flag2 TEXT(32),\
            Flag3 TEXT(32) )'''
            self.execute(strSql)
            
            
            #已安装项目信息表  InstallGameInfo
    #        '''
    #        (gameID TEXT(64) primary key not null,\项目ID
    #        gameName TEXT(64),\项目名称
    #        dispName TEXT(64),\显示名称
    #        lastVersion TEXT(64),\最新版本
    #        serVersion TEXT(64))"已安装版本
    #        '''
            strSql="create table InstallGameInfo \
            (gameID TEXT(64) primary key not null,\
            gameName TEXT(64),\
            dispName TEXT(64),\
            lastVersion TEXT(64),\
            serVersion TEXT(64))"
            self.execute(strSql)
            
            #任务执行情况表  WorkingInfo
            strSql="create table WorkingInfo \
            (ID integer primary key,\
            NumLoading integer,\
            NumSeting integer )"
            self.execute(strSql)
            
            #主版本号表
            strSql="create table IdongInfo (MainVersion TEXT(32) primary key, path TEXT(256))"
            self.execute(strSql)
            #写入初始主版本号
            strSql = "insert into IdongInfo(MainVersion, path) values('1.6.0', '')"
            self.execute(strSql)
    
    def execute(self, strSql):
        """
        此函数用户执行不带返回值的SQL语句
        
        strSql:执行的sql语句
        """
        try:
            dbc = Connection(self.dbname)
            dbc.execute(strSql)
            dbc.commit()
            dbc.close()
            return True
        except Exception, e:
            str = "execute '%s' exception with message '%s'" % (strSql, e)
            print str
            UpdateLog.log(str)
            return False
    
    def executeUpdate(self, strSql):
        """
        查询 flag==0 返回记录数;1返回查询结果
        fields表示要查询的字段集合 ,不为空则返回字段查询结果
        wsm 为条件查询语句 ,不为空,则返回条件查询结果(结果为字典列表)
        """
        try:
            dbc = Connection(self.dbname)
            cur = dbc.cursor()
            cur.execute(strSql)
            rowall = cur.fetchall()
            dbc.commit()
            dbc.close()
            #将结果转化成utf-8编码
            res = []
            for i in range(len(rowall)):
                tmp = []
                for j in range(len(rowall[i])):
                    if type(rowall[i][j]) == type(u"123"):
                        tmp.append(rowall[i][j].encode("utf-8"))
                    else:
                        tmp.append(rowall[i][j])
                res.append(tmp)
            return res
            
#            if flag==0:
#                return len(rowall)
#            else:
#                #根据字段列表和返回值生成 返回字典列表
#                if strfield=='':
#                    fields = self.getTableinfo(self.tablename)
#                else:
#                    fields = strfield.rsplit(',')
#                
##                print 'The Fields of ',tablename,'is:',fields            
#                rowlist=[]
#                for row in rowall:
#                    dict = {}
##                    print len(row),len(fields)
#                    for i in range(0,len(row)):
##                        print fields[i],row[i]
#                        dict[fields[i]] = row[i]
#                    rowlist.append(dict)
#                
##                print rowlist
#                return rowlist
#  
        except:
            str = "executeUpdate '%s' exception with message '%s'" % (strSql, sys.exc_info()[1][0])
            print str
            UpdateLog.log(str)
            return None
        
    def getTableinfo(self):
        """
        获取表的字段信息
        """
        try:
            dbc = Connection(self.dbname)
            cur = dbc.cursor()
            strsql = "select * from sqlite_master where type='table' and name='" + self.tablename+"'"
#            print strsql
            cur.execute(strsql)
            dbinfo = cur.fetchall()
            #print dbinfo
            dbc.commit()
            dbc.close()
        except Exception, e:
            str = "getTableinfo err with message %s" % e
            print str
            UpdateLog.log(str)
            return None
        res = self.__createsqlToFieldlist(dbinfo[0][4])
        #转化成utf-8
        for i in range(len(res)):
            res[i] = res[i].encode("utf-8")
        return res

    def __createsqlToFieldlist(self,createsql):
        """
        根据create sql 语句返回字段列表
        """
        strtemp = createsql
        list =[]
        ifind=strtemp.find('(')
        while ifind!=-1:
            strtemp = strtemp[ifind+1:].lstrip()
            list.append(strtemp[:strtemp.find(' ')])
            ifind = strtemp.find(',')
        return list
        
#    #删除某条记录
#    def deletedb(self,tablename,wsm=''):
#        log = open('log.txt','w')
#        try:
#            dbc = Connection(self.dbname)
#            if wsm=='':
#                dbc.execute("delete from "+tablename)
#            else:
#                dbc.execute("delete from "+tablename+' where '+wsm)
#            dbc.commit()
#            dbc.close()
#        except:
#            print sys.exc_info()
#            log.write(sys.exc_info()[1][0])
#            log.close()

#    #查询数据库表结构信息
#    #输入表名
#    #返回表字段列表

#        
#    def dropTable(self,tablename):
#        dbc = Connection(self.dbname)
#        dbc.execute('drop table '+tablename)
#        dbc.commit()
#        dbc.close()

#    #根据字段类型和值返回字符串
#    def fromtypetovalue(self,tablename,field,value):
#        try:
#            dbc = Connection(self.dbname)
#            dbc.execute(strSql)
#            dbc.commit()
#            dbc.close()
#        except:
#            print sys.exc_info()[1][0]



if __name__ == '__main__':
    UpdateLog.init_log("UpdateLog.log")
    
    vs = VisitSqlite('LanucherInfo.db', "WorkingInfo")
    print vs.getTableinfo()


2、简易sql控制台
# -*- coding: UTF-8  -*- 
import VisitSqlite

##getattr(TaskListDBFace)

class Console:
    @staticmethod 
    def start():
        
        while True:
            tip1 = "Please enter your sql to perform...\n"
            tip2 = "ERROR:your enter sql can not empry...\n"
            tip3 = "ERROR:your operate table is not exist...\n"
            executeErrorTip = 'Execute sql error,please check your excute sql...'
            executeSuccTip = 'Excute sql success...'
            sql = raw_input(tip1)
            if sql == '':
                print tip2
            else:
                if 'TaskList' in sql:
                    dbc = VisitSqlite.VisitSqlite('LanucherInfo.db', 'TaskList')
                elif 'InstallGameInfo' in sql:
                    dbc = VisitSqlite.VisitSqlite('LanucherInfo.db', 'InstallGameInfo')
                elif 'WorkingInfo' in sql:
                    dbc = VisitSqlite.VisitSqlite('LanucherInfo.db', 'WorkingInfo')
                else:
                    print tip3
                    continue
                tableInfo = dbc.getTableinfo()
                if ('select' in sql) or ('SELECT' in sql):
                    res = dbc.executeUpdate(sql)
                    if res is None:
                        print executeErrorTip
                    resDict = []
                    for row in res:
                        dict = {}
                        for i in range(0,len(row)):
                            dict[tableInfo[i]] = row[i]
                        resDict.append(dict)
                    if len(resDict) != 0:
                        print 'The query result is:\n'
                        print FormatUtil.format(resDict)
                    else:
                        print 'The query table is empty!'
                else:
                    ret = dbc.execute(sql)
                    if ret:
                        print executeSuccTip
                    else:
                        print executeErrorTip

class FormatUtil():
    '''
    format the select result
    '''
    @staticmethod 
    def format(res):
        '''
        the res is a list that contains dict
        '''
        resStr = ''
        topLine = ''
        nameStr = ''
        valuesStr = ''
        for record in res:
            keys = record.keys()
            values = record.values()
            strLine = ''
            valueStr = ''
            for key in keys:
                strLine += FormatUtil.printLine(20)
                
            nameStr = FormatUtil.printValue(keys)
            
            valueStr = FormatUtil.printValue(values)+'\n'+strLine
            
            valuesStr += valueStr+'\n'
        resStr = strLine+'\n'+nameStr+'\n'+strLine+'\n'+valuesStr
        return resStr
    
    @staticmethod         
    def printValue(valueList):
        '''
        '''
        resStr = ''
        spac = ''
        for i in range(0,len(valueList)):
            intSpac = 0
            if valueList[i] is not None:
                intSpac = len(str(valueList[i]))
            else:
                valueList[i] = ''
            for j in range(0,20-intSpac):
                spac += ' '
            resStr += str(valueList[i])+spac+'|'
            spac = ''
        return resStr 
    
    @staticmethod         
    def printLine(length):
        
        resStr = ''
        tems = ''
        for i in range(0,length):
            tems += '-'
        resStr += tems+'|'
        return resStr 

      
        
if __name__ == '__main__':
#    print FormatUtil.printCell('dfdf sdfs d')
#    print FormatUtil.format([{'name':'Dream','age':'12','job':'coder','school':'xinhua university'},{'name':'Dream2','age':'23','job':'coder2','school':'xinhua university2'}])
#    print FormatUtil.printLine('name')
#    print FormatUtil.printValue(['name','age','job'])
    Console.start()
分享到:
评论

相关推荐

    【Python数据分析实例及教程】Python数据分析实例及教程

    Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python...

    102套python源码实例.zip

    102套python源码实例含Py源代码,提供python语言学习者。目录简述: 根据出生日期判断你的星座 根据出生日期判断生肖 使用Python制作简易数字累加器 商品竞猜价格 根据计算机硬盘、主板、CPU生成注册信息 语音版东北...

    50个Python项目实例源码

    50个Python项目实例源码包括算法,游戏,自动,办公,excelworld实战源码。 包括基础知识,实操得项目源码 Python算法练习 Python基础知识源码 Python100个源码实例 Python实战操作源码 Python实战项目源码 Python...

    python运维实例.pdf

    python运维实例.pdf

    爬虫开发Python实例代码.zip

    爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例...

    textpython程序实例大大.zip

    《Python程序设计实践:英文课本例题与实例解析》 Python是一种高级编程语言,以其简洁、易读的语法和强大的功能而备受青睐。在“textpython程序实例大大.zip”这个压缩包中,我们找到了一系列与Python编程相关的...

    python编程实例50例.pdf

    【Python编程实例50例】是一份集合了各种Python编程基础到进阶的实例教程,旨在帮助初学者通过实际操作来学习Python编程。这个文档包含了从简单的“Hello, World!”程序到更复杂的数学运算和数据处理等多个实例。...

    Python基础实例教程部分习题参考答案.zip

    本书介绍了Python自带的开发环境以及IPython等其他集成开发环境,且全部实例的代码均在Python 3环境下调试通过。 全书共分9章,按照循序渐进的原则安排,从内置对象类型到语句语法,再到函数和模块,以及面向对象...

    Python 实例 - 根据IP地址查对应的地理信息 Python源码

    Python 实例 - 根据IP地址查对应的地理信息 Python源码Python 实例 - 根据IP地址查对应的地理信息 Python源码Python 实例 - 根据IP地址查对应的地理信息 Python源码Python 实例 - 根据IP地址查对应的地理信息 Python...

    python100个源码实例

    python100个源码实例

    图像处理的详细python程序实例

    这个压缩包“image_tutorial”显然是一个图像处理的学习资源,包含了具体的Python程序实例,旨在帮助初学者和有经验的开发者深入理解图像处理技术。我们将探讨一些关键的知识点,包括基本的图像操作、颜色空间转换、...

    Python100实例_python实例_python_

    "Python100实例"提供了一个全面的学习资源,让你通过实际操作来深入理解Python编程。这个压缩包中的"Python100实例.docx"文档很可能包含了100个不同的Python编程代码示例,涵盖了Python的基础到进阶应用。 这些实例...

    python实例一键抓出PPT中的所有文字

    python实例一键抓出PPT中的所有文字python实例一键抓出PPT中的所有文字python实例一键抓出PPT中的所有文字python实例一键抓出PPT中的所有文字python实例一键抓出PPT中的所有文字python实例一键抓出PPT中的所有文字...

    Python 实例 - 五星红旗 Python源码

    Python 实例 - 五星红旗 Python源码Python 实例 - 五星红旗 Python源码Python 实例 - 五星红旗 Python源码Python 实例 - 五星红旗 Python源码Python 实例 - 五星红旗 Python源码Python 实例 - 五星红旗 Python源码...

    python数据分析实例 python数据分析实例(源码)

    python数据分析实例 python数据分析实例(源码) # python数据分析 #### 介绍 python数据可视化例子 ##### 1.SARIMAX模型对公路车流量预测 ##### 2.古诗词云统计 ##### 3.对大数据岗位可视化分析

    pythonocc实例

    本实例集合将为你提供深入理解并使用Pythonocc的关键知识点。 1. **Pythonocc安装与环境配置** 在开始使用Pythonocc之前,你需要先安装这个库。通常可以通过pip进行安装,如`pip install pythonocc-core`。同时,...

    100个python源码实例包括游戏,算法,自动,办公等项目实战

    50个Python项目实例源码包括算法,游戏,自动,办公,excelworld实战源码。 包括基础知识,实操得项目源码 Python算法练习 Python基础知识源码 Python100个源码实例 Python实战操作源码 Python实战项目源码 Python...

    Python爬虫实例-urllib-request-parse等包的学习实例

    Python爬虫实例-urllib,request,parse,json等包的应用

    python经典实例代码汇总+100例

    python经典实例代码汇总+100例

    Python入门实例

    Python 入门实例 Python 是一个非常基础的编程语言,本文从实例出发,介绍 Python 编程的基本知识点。 知识点: * input("某字符串") 函数:显示"某字符串",并等待用户输入。 * print() 函数:如何打印。 * 如何...

Global site tag (gtag.js) - Google Analytics