Python读取配置文件,并连接数据库SQL Server

用配置文件保存固定的连接数据,改的话比较方便。

1.新建一个配置文件:SQlconfig.config,以数据库为例。

内容如下,当然也可以添加多个

[Database1]
database=db_test
host=test.sqlserver.rds.alincs.com,3433
user=qhlt_just
pwd=zHi4M63wIddlSDK2nY
[Database2]
database=db_test
host=test.sqlserver.rds.alincs.com,3433
user=qhlt_just
pwd=zHi4M63wIddlSDK2nY

。。。。。

2.读取配置文件。用户ConfigParser读取文件的类。

代码如下

# coding=utf-8
import ConfigParser
def getSQLCONFIG(filename):
    cf = ConfigParser.ConfigParser()
    cf.read(filename)#读取配置文件
    # 读取对应文件参数
    _database = cf.get("Database1", "database")
    _host = cf.get("Database1", "host")
    _user = cf.get("Database1", "user")
    _pwd= cf.get("Database1", "pwd")
    print "%s,%s,%s,%s" % (_database, _host, _user,_pwd)
    return _database, _host, _user,_pwd #返回需要的参数

3.连接数据库,需安装Pyodbc库。连接SQL server数据库

#coding=utf-8
import pyodbc
import ReadConfig#调用读取配置文件
c=ReadConfig.getSQLCONFIG(r‘C:\Users\Administrator\PycharmProjects\untitled1\com\SQLqueray\SQlconfig.config‘)

conn_info = ‘DRIVER={SQL Server};DATABASE=%s;SERVER=%s;UID=%s;PWD=%s‘%(c[0], c[1], c[2], c[3])
mssql_conn = pyodbc.connect(conn_info)
mssql_cur=mssql_conn.cursor()
#查询 姓名和用户ID
result=mssql_cur.execute("select Fullname,id  from god where id=19688")
#循环打印查询的结果
for row in result:
    print row[0],row[1]

 输出如下:

原文地址:https://www.cnblogs.com/timer228/p/8279636.html

时间: 2024-11-09 20:44:21

Python读取配置文件,并连接数据库SQL Server的相关文章

Ubuntu12.10下Python(pyodbc)访问SQL Server解决方案

一.基本原理 请查看这个网址,讲得灰常详细:http://www.jeffkit.info/2010/01/476/ 二.实现步骤 1.安装linux下SQL Server的驱动程序 安装Freetds,不要使用apt-get install 来安装,因为源里的版本不一定是新的,建议使用stable版本, 下载源码手工编译安装,因为有好些参数需要在编译中指定的. 执行以下命令: tar zfvx freetds-stable.tgz cd freetds-* ./configure --pref

python读取配置文件 变量 ConfigParser模块

Python 读取写入配置文件很方便,可使用内置的 configparser 模块配置文件:config.ini [oppo] platformName = Android platformVersion = 6.0 deviceName = weiruoyu appPackage = com.sina.weibo appActivity = .SplashActivity url = http://127.0.0.1:4723/wd/hub [mysql] host=127.0.0.1 por

python读取excel表格生成sql语句 第一版

由于单位设计数据库表·,都用sql.不知道什么原因不用 powerdesign或者ermaster工具,建表很痛苦  作为程序猿当然要想办法解决,用Python写一个程序解决 需要用到 xlrd linux下 sudo pip install xlrd 主要是适用于db2数据库 excel 表结构 其中 number是不正确的字段类型 不知道同事为啥这么设置.这里程序里有纠错,这个程序就是将sql语句拼好. __author__ = 'c3t' # coding:utf-8 import xlr

python读取配置文件的方式

python读取配置文件的方式 1.从config.ini中读取,后缀无所谓,文件名字也无所谓,不过config.ini是常用写法,所谓见名知意 config.ini内容: [global] ip = xxx port = xxx table = xxx uname = xxx passwd = xxx 读取方法 import configparser import os dir_now = os.path.dirname(os.path.dirname(os.path.abspath("set

python读取配置文件 ConfigParser

Python 标准库的 ConfigParser 模块提供一套 API 来读取和操作配置文件. 配置文件的格式 a) 配置文件中包含一个或多个 section, 每个 section 有自己的 option: b) section 用 [sect_name] 表示,每个option是一个键值对,使用分隔符 = 或 : 隔开: c) 在 option 分隔符两端的空格会被忽略掉 d) 配置文件使用 # 和 ; 注释 一个简单的配置文件样例 myapp.conf 1 2 3 4 5 6 7 8 9

用python读取配置文件config.ini

还在学习中...写的有点凌乱 感觉还是应该先学会读取配置文件才行,把一些经常需要修改的但是又经常需要用到的参数放到配置文件中方便使用(我是这么觉得的) 首先是config.ini的存放位置,我们把它放在根目录下(当然也可以随便想放哪放哪) 1 proDir = os.path.split(os.path.realpath(__file__))[0] //根目录地址 2 configPath = os.path.join(proDir, "config.ini") //存放在根目录下,文

python读取json文件存sql及codecs读取大文件问题

preface: 最近帮师兄处理json文件,需要读到数据库里面,以备其后续从数据库读取数据.数据是关于yelp网站里面的: https://github.com/Yelp/dataset-examples,http://www.yelp.com/dataset_challenge/. 涉及到一些json和sql的问题,记录下. 一.python sql安装 python 自带轻型数据库sqlite,不过用不了.需要mysql才行,pip安装mysql失败,easy_install安装也失败,这

python读取配置文件

配置文件setting.ini [app] appName = apptest Ip = 0.0.0.0 Port = 10010 读取方法: import ConfigParser from log4py import log4py var = {} log=log4py("readConfig.py") def getConfig(configFile):     try:         cf = ConfigParser.ConfigParser()         cf.re

python 读取 配置文件

读取方法: def get(section,option):     cp = ConfigParser.SafeConfigParser()     cp.read(os.path.split(os.path.realpath(__file__))[] + )     cp.get(section,option)           配置文件: #mongodb数据库信息 [mongodb] host=192.168.1.102 port=27017 #mysql数据库参数 [mysqldb]