码迷,mamicode.com
首页 > 数据库 > 详细

python——连接数据库

时间:2019-11-29 11:04:49      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:else   commit   das   开源   port   err   com   python   pytho   

pyodbc是一个开源的python模块,可以方便我们连接到odbc数据库。

import pandas as pd
import numpy as np
import pyodbc
def hive_query(sql, method=‘default‘):
if method == ‘default‘:
conn = pyodbc.connect("DSN=myHive", autocommit=True)
return pd.read_sql(sql=sql, con=conn)
conn.close()
else:
print(‘method is error!‘)

python——连接数据库

标签:else   commit   das   开源   port   err   com   python   pytho   

原文地址:https://www.cnblogs.com/CrazyJioJio/p/11956137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!