python中怎么操作sybase iq数据库,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
#!/usr/env/bin python
-*-coding:utf-8 -*-
#导入数据库连接模块
import sqlanydb
user='dba'
passwd='hwfx123'
host='localhost:5000'
_sql = """select getdate()"""
# 连接到数据库
con = sqlanydb.connect(userid=user, password=passwd, host=host)
# 执行SQL语句
cur = con.cursor()
cur.execute(_sql)
# 获取执行结果
current_date = cur.fetchall()[0]
print 'current date is', current_date
cur.close()
con.close()
关于python中怎么操作sybase iq数据库问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注天达云行业资讯频道了解更多相关知识。