SAP HANA 是SAP 新的内存数据库:
目前学习python数据处理分析,现在想要连接 SAP HANA 数据库,
发现目前python已经发布了连接 SAP HANA的库 pyhddb
1、需要安装pyhdb
代码语言:javascript复制pip install pyhdb
2.获取 Connection 对象
import pyhdb
def get_connection():
conn_obj = pyhdb.connect(
host="10.33.67.12",
port=30015, #多租户的端口需要准确的如30053,
user="***",
password="***"
)
return conn_obj
3查询数据
代码语言:javascript复制def get_employees(conn,A):
cursor = conn.cursor()
#cursor.execute("select * from XMZX.ZTEST_HANA where ID='a' ") #python官方例子的SQl模式,去掉字段和表的双引号
cursor.execute("select * from XMZX.ZTEST_HANA where ID='%s' "%(A))# 传递参数到
#cursor.execute('select "ID","NAME","ZCLNT" from "XMZX"."ZTEST_HANA" where "ID"='a' ') #HANA生成的SQL需将'转义
employees = cursor.fetchall()
conn.close()
return employees
if __name__=='__main__':
conn = get_connection()
employees = get_employees(conn,'b')
for employee in employees:
print (employee)
这里只做简单的连接查询,其他的可以参照pyhdb的库来更改
https://blogs.sap.com/2014/04/02/在python中连接sap-hana/
这里是用HANA ODBC连接查询的情况