import pymssql class linkDB(): def linkdb(): #数据库远程连接 conn = pymssql.connect(host="数据库IP地址:端口号",user="用户名",password="密码",database="数据库名",charset="utf8") #使用cursor()方法获取操作游标 cursor = conn.cursor() #查询语句 sql = "这里面是sql语句" try: cursor.execute(sql) #游标 result = cursor.fetchall() #查询 print(result) except: print("连接数据库报错了!") #关闭数据库连接 conn.close() if __name__ == '__main__': linkDB.linkdb()
来源:https://www.cnblogs.com/python99/p/12248050.html