python数据库编程 ODBC方式实现通讯录


Posted in Python onMarch 27, 2020

Python 数据库编程,ODBC方式实现通讯录,供大家参考,具体内容如下

#-*-coding:utf-8-*-
import pyodbc
import os
def SelectInfo(hcon,hcur):
 hcur.execute('select * from PassMapT')
 ptitle=('ID','Item','Pwd','other')
 print(ptitle)
 result=hcur.fetchall()
 for item in result:
 print(item)
 print('')

def AddInfo(hcon,hcur):
 id=int(input('please input ID: '))
 item=str(input('please input Item: '))
 pwd=str(input('please input Tel 1: '))
 other=str(input('please input Other: '))
 sql="insert into PassMapT(id,item,pwd,other) values(?,?,?,?)"
 try:
 hcur.execute(sql,(id,item,pwd,other))
 hcon.commit()
 except:
 hcon.rollback()

def DeleteInfo(hcon,hcur):
 SelectInfo(hcon,hcur)
 did=int(input('please input id of delete: '))
 sql="delete from PassMapT where id=?"
 try:
 hcur.execute(sql,(did,))
 hcon.commit()
 except:
 hcon.rollback()

def UpdateInfo(hcon,hcur):
 SelectInfo(hcon,hcur)
 did=int(input('please input id of update: '))
 
 sqlitem="update PassMapT set item=? where id=?"
 item=str(input('please input Item: '))
 try:
 hcur.execute(sqlitem,(item,did))
 hcon.commit()
 except:
 hcon.rollback()
 
 sqlpwd="update PassMapT set pwd=? where id=?"
 pwd=str(input('please input Pwd: '))
 try:
 hcur.execute(sqlpwd,(pwd,did))
 hcon.commit()
 except:
 hcon.rollback()
 
 sqlother="update PassMapT set other=? where id=?"
 other=str(input('please input other: '))
 try:
 hcur.execute(sqlother,(other,did))
 hcon.commit()
 except:
 hcon.rollback()
 
def Meau():
 print('1.diaplay')
 print('2.add')
 print('3.update')
 print('4.delete')
 print('5.cls')
 print('0.exit')
 sel=9
 while(sel>5 or sel<0):
 sel=int(input('please choice: '))
 return sel

def main():
 hcon = pyodbc.connect(r'DRIVER={SQL Server Native Client 11.0};SERVER=127.0.0.1;DATABASE=PasswordMap;UID=sa;PWD=lptpwd')
 hcur=hcon.cursor()
 
 while(True):
 sel=Meau()
 if(sel==1):
 SelectInfo(hcon,hcur)
 elif(sel==2):
 AddInfo(hcon,hcur)
 elif(sel==3):
 UpdateInfo(hcon,hcur)
 elif(sel==4):
 DeleteInfo(hcon,hcur)
 elif(sel==5):
 os.system('cls')
 else:
 break
 hcur.close()
 hcon.close()

if __name__=='__main__':
 main()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
基于python的汉字转GBK码实现代码
Feb 19 Python
python3实现逐字输出的方法
Jan 23 Python
Django REST framework 如何实现内置访问频率控制
Jul 23 Python
Python解析json时提示“string indices must be integers”问题解决方法
Jul 31 Python
numpy:np.newaxis 实现将行向量转换成列向量
Nov 30 Python
Python类中self参数用法详解
Feb 13 Python
基于python3的socket聊天编程
Feb 17 Python
Python如何在main中调用函数内的函数方式
Jun 01 Python
Python调用shell cmd方法代码示例解析
Jun 18 Python
Python collections.defaultdict模块用法详解
Jun 18 Python
Python绘制分类图的方法
Apr 20 Python
OpenCV中resize函数插值算法的实现过程(五种)
Jun 05 Python
django 读取图片到页面实例
Mar 27 #Python
django ListView的使用 ListView中获取url中的参数值方式
Mar 27 #Python
django列表筛选功能的实现代码
Mar 27 #Python
python实现猜数游戏
Mar 27 #Python
手把手教你安装Windows版本的Tensorflow
Mar 26 #Python
python pandas.DataFrame.loc函数使用详解
Mar 26 #Python
Python计算指定日期是今年的第几天(三种方法)
Mar 26 #Python
You might like
全国FM电台频率大全 - 18 湖南省
2020/03/11 无线电
ASP知识讲座四
2006/10/09 PHP
删除无限分类并同时删除它下面的所有子分类的方法
2010/08/08 PHP
php中inlcude()性能对比详解
2012/09/16 PHP
php读取excel文件的简单实例
2013/08/26 PHP
PHP获取本周第一天和最后一天示例代码
2014/02/24 PHP
PHP实现电商订单自动确认收货redis队列
2017/05/17 PHP
使用laravel根据用户类型来显示或隐藏字段
2019/10/17 PHP
写了一个layout,拖动条连贯,内容区可为iframe
2007/08/19 Javascript
兼容IE/Firefox/Opera/Safari的检测页面装载完毕的脚本Ext.onReady的实现
2009/07/14 Javascript
jQuery的三种$()
2009/12/30 Javascript
JavaScript 学习笔记(十五)
2010/01/28 Javascript
js的alert弹出框出现乱码解决方案
2013/09/02 Javascript
js实现文章文字大小字号功能完整实例
2014/11/01 Javascript
探究Javascript模板引擎mustache.js使用方法
2016/01/26 Javascript
使用node+vue.js实现SPA应用
2016/01/28 Javascript
使用jquery获取url及url参数的简单实例
2016/06/14 Javascript
JavaScript对象数组如何按指定属性和排序方向进行排序
2016/06/15 Javascript
解决vue中对象属性改变视图不更新的问题
2018/02/23 Javascript
Node.js中你不可不精的Stream(流)
2018/06/08 Javascript
python进阶教程之动态类型详解
2014/08/30 Python
Python使用matplotlib绘制动画的方法
2015/05/20 Python
编写Python小程序来统计测试脚本的关键字
2016/03/12 Python
Python 性能优化技巧总结
2016/11/01 Python
使用Python实现windows下的抓包与解析
2018/01/15 Python
对python产生随机的二维数组实例详解
2018/12/13 Python
Python的高阶函数用法实例分析
2019/04/11 Python
如何基于Python实现自动扫雷
2020/01/06 Python
python对接ihuyi实现短信验证码发送
2020/05/10 Python
Python实现一个简单的毕业生信息管理系统的示例代码
2020/06/08 Python
python 偷懒技巧——使用 keyboard 录制键盘事件
2020/09/21 Python
linux面试题参考答案(11)
2012/05/01 面试题
幼儿园保育员辞职信
2014/01/12 职场文书
十八届三中全会报告学习材料
2014/02/17 职场文书
校园联欢晚会主持词
2014/03/17 职场文书
高中诗歌鉴赏教学反思
2016/02/16 职场文书