- 浏览: 440163 次
- 性别:
文章分类
最新评论
-
nianhua2008:
你好,请问哪个cocos版本可以读取cbx文件?
Cocos3dx入门 -
ihic11:
我的为什么Receive.jsp一直有乱码?请帮忙
网银在线支付注意事项 -
奔跑的蓝猫:
楼主你好!请问这两个文件怎么使用啊?
楼主能把源代码发给我下吗 ...
简易视频聊天 -
wx_hello:
不错。。学习了。。
jquery解析xml -
ocaicai:
圣人啊,救星啊,我被这个问题折磨得蛋疼!对了,我在google ...
struts2+urlrewrite
1、操作数据库
2、简易sql控制台
# -*- 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()
发表评论
-
ubuntu下使用apache发布Django应用
2010-12-20 09:21 2251一、安装Django 1、下载地址 http://www.dj ... -
【转】Python如何使用urllib2获取网络资源
2010-10-29 20:04 2000urllib2是Python的一个获取URLs(Uniform ... -
python获取系统、平台相关的信息
2010-10-26 16:23 1088python获取系统、平台相关的信息 可使用以下两个模块: ... -
python打印详细的异常信息
2010-09-20 15:44 1271import traceback print trace ... -
python编码问题
2010-08-23 13:26 4352出现错误: UnicodeDecodeError: 'asc ... -
python比较值类型是否为字符串
2010-08-04 14:56 883value:要判断的值 isinstance(value ... -
使用C/C++扩展Python
2010-07-20 16:20 0方式一、使用VC++6.0 1、配置VC++6.0环境 1) ... -
Python日期计算
2010-05-28 10:38 16431、将字符串转换成date nowDate = time.st ... -
python发送邮件
2010-05-27 11:15 3233# -*- coding:UTF-8 -*- ''' ... -
Python多线程实例
2010-05-08 17:01 1649特别注意: 加锁的位置一定要只包住临界资源,如: self.s ... -
Python实现ping命令
2010-05-08 12:49 10740#!/usr/bin/env python # -*- co ... -
wxPython GUI菜单示例
2010-05-07 22:31 16841、main.py #!/usr/bin/env python ... -
py2exe简单使用
2010-05-06 15:46 13581、首先下载已安装的对应Python版本的py2exe 2、将 ... -
Python截屏程序
2010-05-06 13:31 2439说明:必须安装PIL库 # -*- coding:UTF-8 ... -
Python HTTP文件上传
2010-05-06 11:08 9464# -*- coding:UTF-8 -*- ''' Cr ... -
文件夹差异文件对比工具
2010-05-05 15:44 1529# -*- coding:UTF-8 -*- ''' Cr ... -
Python获取本机公网IP(windows、Linux下通用)
2010-04-23 15:24 3655class Getmyip: def getip(s ... -
Python随机生成字符串
2010-04-22 15:25 1669class RandomUtil(): ... -
Python执行外部程序
2010-04-21 15:52 4026# -*- coding:UTF-8 -*- impo ... -
Python对象转换为xml
2010-04-20 17:41 8070# -*- coding:UTF-8 -*- ''' Cr ...
相关推荐
Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python数据分析实例及教程Python...
102套python源码实例含Py源代码,提供python语言学习者。目录简述: 根据出生日期判断你的星座 根据出生日期判断生肖 使用Python制作简易数字累加器 商品竞猜价格 根据计算机硬盘、主板、CPU生成注册信息 语音版东北...
50个Python项目实例源码包括算法,游戏,自动,办公,excelworld实战源码。 包括基础知识,实操得项目源码 Python算法练习 Python基础知识源码 Python100个源码实例 Python实战操作源码 Python实战项目源码 Python...
python运维实例.pdf
爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例代码.zip爬虫开发Python实例...
《Python程序设计实践:英文课本例题与实例解析》 Python是一种高级编程语言,以其简洁、易读的语法和强大的功能而备受青睐。在“textpython程序实例大大.zip”这个压缩包中,我们找到了一系列与Python编程相关的...
【Python编程实例50例】是一份集合了各种Python编程基础到进阶的实例教程,旨在帮助初学者通过实际操作来学习Python编程。这个文档包含了从简单的“Hello, World!”程序到更复杂的数学运算和数据处理等多个实例。...
本书介绍了Python自带的开发环境以及IPython等其他集成开发环境,且全部实例的代码均在Python 3环境下调试通过。 全书共分9章,按照循序渐进的原则安排,从内置对象类型到语句语法,再到函数和模块,以及面向对象...
Python 实例 - 根据IP地址查对应的地理信息 Python源码Python 实例 - 根据IP地址查对应的地理信息 Python源码Python 实例 - 根据IP地址查对应的地理信息 Python源码Python 实例 - 根据IP地址查对应的地理信息 Python...
python100个源码实例
这个压缩包“image_tutorial”显然是一个图像处理的学习资源,包含了具体的Python程序实例,旨在帮助初学者和有经验的开发者深入理解图像处理技术。我们将探讨一些关键的知识点,包括基本的图像操作、颜色空间转换、...
"Python100实例"提供了一个全面的学习资源,让你通过实际操作来深入理解Python编程。这个压缩包中的"Python100实例.docx"文档很可能包含了100个不同的Python编程代码示例,涵盖了Python的基础到进阶应用。 这些实例...
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数据可视化例子 ##### 1.SARIMAX模型对公路车流量预测 ##### 2.古诗词云统计 ##### 3.对大数据岗位可视化分析
本实例集合将为你提供深入理解并使用Pythonocc的关键知识点。 1. **Pythonocc安装与环境配置** 在开始使用Pythonocc之前,你需要先安装这个库。通常可以通过pip进行安装,如`pip install pythonocc-core`。同时,...
50个Python项目实例源码包括算法,游戏,自动,办公,excelworld实战源码。 包括基础知识,实操得项目源码 Python算法练习 Python基础知识源码 Python100个源码实例 Python实战操作源码 Python实战项目源码 Python...
Python爬虫实例-urllib,request,parse,json等包的应用
python经典实例代码汇总+100例
Python 入门实例 Python 是一个非常基础的编程语言,本文从实例出发,介绍 Python 编程的基本知识点。 知识点: * input("某字符串") 函数:显示"某字符串",并等待用户输入。 * print() 函数:如何打印。 * 如何...