- 论坛徽章:
- 0
|
Python连接 mysql 连接 sqlserver
安装 python
Yum install python (相应ubuntu 用apt-get 千万别一个包一个包自己装 会死的很难看的 )
输入python 出现如下界面表示 安装成功。
Python 2.7 (r27:82500, Sep 16 2010, 18:03:06)
[GCC 4.5.1 20100907 (Red Hat 4.5.1-3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
Ctrl+D 退出
安装 python 与mysql的连接器 mysqldb
输入 yum search mysqldb 出现如下信息
MySQL-python.i686
输入 yum install MySQL-python
安装 mysqldb成功。
测试文件 请看 utils 和 test1.py 如果不报错则通过。。。
test1.py
[root@localhost test]# cat test1.py
#!/usr/bin/python
#-*- coding: UTF-8 -*-
from utils import msutil
util=msutil.MSUtil()
con=util.getcon()
cur=con.cursor()
sql='select top 100 wname from ware where wid > %s and wpid=%d'
cur.execute(sql,('1110057019',80 )
for row in cur:
temp=row[0]
flag=isinstance(temp, unicode)
=temp.encode('utf8')
print dd
cur.close()
con.close()
utils 包中 mysqlutil.py
[root@localhost utils]# cat mysqlutil.py
#!/usr/bin/python
#-*- coding: UTF-8 -*-
import MySQLdb
class MySQLdbUtil:
def getCon():
con=MySQLdb.connect(host='10.10.242.237' ,user='root' ,passwd='123456')
con.select_db('python')
return con
安装 python 与sqlserver连接器 pymssql
输入 yum search pymssql 出现如下信息
pymssql.i686 : A simple database interface to MS-SQL for Python
输入 yum install pymssql
安装成功
测试文件请看utils 如果不报错 通过。。。。。(测试类暂无,与上面的mysql test1.py类似)
Utils 包中 msutil.py
[root@localhost utils]# cat msutil.py
#!/usr/bin/python
#-*- coding: UTF-8 -*-
import pymssql
class MSUtil:
def __init__(self):
print 'this ms util'
def getCon(self):
con = pymssql.connect(host='10.10.224.150',user='testwrite',password='654321',database='product',charset='gbk')
return con
# print 'getcon is diaoyong' |
|