免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 11677 | 回复: 13
打印 上一主题 下一主题

Python学习笔记(pymssql数据库操作) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-09-08 20:18 |只看该作者 |倒序浏览
因为公司使用的MSSQL2005,所以我是通过pymssql来连接的。没什么好多说的,把可能用到的数据库操作方式都总结如下,如果要用的时候就备查啦。
#!/usr/bin/env python
#coding=utf-8
from __future__ import with_statement
from contextlib import closing
import inspect
import pymssql
import uuid
import datetime
#查询操作
with closing(pymssql.connect(host='localhost',user='sa',password='ssss',database='blogs')) as conn :
    cur = conn.cursor()
    #SELECT 长连接查询操作(逐条方式获取数据),这个我不能肯定,还请各位看官确认一下,有空我在具体测试一下。
    sql = "select * from pcontent"
    cur.execute(sql)
    for i in range(cur.rowcount):
        print cur.fetchone()
    #SELECT 短链接查询操作(一次查询将所有数据取出)
    sql = "select * from pcontent"
    cur.execute(sql)
    print cur.fetchall()
    #INSERT
    sql = "INSERT INTO pcontent(title)VAlUES(%s)"
    uuidstr = str(uuid.uuid1())
    cur.execute(sql,(uuidstr,))
    conn.commit()
    print cur._result
    #INSERT 获取IDENTITY(在插入一个值,希望获得主键的时候经常用到,很不优雅的方式)
    sql = "INSERT INTO pcontent(title)VAlUES(%s);SELECT @@IDENTITY"
    uuidstr = str(uuid.uuid1())
    cur.execute(sql,(uuidstr,))
    print "arraysite:",cur.arraysize
    print cur._result[1][2][0][0]#不知道具体的做法,目前暂时这样使用
    conn.commit()
    #Update
    sql = 'update pcontent set title = %s where id=1'
    cur.execute(sql,(str(datetime.datetime.today()),))
    conn.commit()
    #参数化查询这个是为了避免SQL攻击的
    sql = "select * from pcontent where id=%d"
    cur.execute(sql,(1,))
    print cur.fetchall()
    # 调用存储过程SP_GetALLContent 无参数
    sql = "Exec SP_GetALLContent"
    cur.execute(sql)
    print cur.fetchall()
    # 调用存储过程SP_GetContentByID 有参数的
    sql = "Exec SP_GetContentByID %d"
    cur.execute(sql,(3,))
    print cur.fetchall()
    #调用存储过程SP_AddContent 有output参数的(很不优雅的方式)
    sql = "DECLARE @ID INT;EXEC SP_AddContent 'ddddd',@ID OUTPUT;SELECT @ID"
    cur.execute(sql)
    print cur._result


附件是写的DEMO代码

pymysqlDemo(2).rar

1 KB, 下载次数: 177

DEMO

论坛徽章:
0
2 [报告]
发表于 2008-09-08 20:53 |只看该作者
re

论坛徽章:
0
3 [报告]
发表于 2008-09-09 09:04 |只看该作者
感谢分享。
运用到了with,不错。

论坛徽章:
0
4 [报告]
发表于 2008-09-09 11:37 |只看该作者
Good....

论坛徽章:
0
5 [报告]
发表于 2008-09-09 12:43 |只看该作者
用with怎么获取异常呢?把整个都放在try里?

论坛徽章:
0
6 [报告]
发表于 2008-09-09 13:23 |只看该作者
原帖由 jjj137 于 2008-9-9 12:43 发表
用with怎么获取异常呢?把整个都放在try里?


楼主程序开头部分有一个:from contextlib import closing
>>> help(closing)

|  Code like this:
|
|      with closing(<module>.open(<arguments>)) as f:
|          <block>
|
|  is equivalent to this:
|
|      f = <module>.open(<arguments>)
|      try:
|          <block>
|      finally:
|          f.close()

可以看出两个差不多雷同把。

论坛徽章:
0
7 [报告]
发表于 2008-09-09 15:58 |只看该作者
我问的是expect IOError应该写在哪里。

论坛徽章:
0
8 [报告]
发表于 2008-09-09 16:03 |只看该作者
>>> try:
...     with open('d:/tt.txt','r') as a:
...             print 'aaaa'
... except:
...     print 'dddddddddd'
...

貌似只能这样老办法了。

论坛徽章:
0
9 [报告]
发表于 2008-09-09 16:05 |只看该作者
晕,那如果代码块其他地方出现IOError就分辨不出来了……

论坛徽章:
0
10 [报告]
发表于 2008-09-09 16:52 |只看该作者

回复 #7 jjj137 的帖子

这个我到没想过,我尝试一下。就是希望把异常信息捕获到.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP