数据库
首页 > 数据库> > 连接Sql Server数据库

连接Sql Server数据库

作者:互联网

import pyodbc
class database:
    def __init__(self):
        #连接Sql Server数据库
        self.conn = pyodbc.connect(
            'DRIVER={SQL Server};'
            'SERVER=127.0.0.1,1433;'
            'DATABASE=textbook;'
            'UID=sa;'
            'PWD=123456')
        self.cur = self.conn.cursor()#获得游标

标签:__,数据库,Server,Sql,pyodbc,self,conn
来源: https://blog.csdn.net/m0_46229882/article/details/121887085