使用Python操作MSSQL資料庫.

來源:互聯網
上載者:User

有時想更新或遷移部分SqlServer資料,用SQL只會整幾句select,進階點的連個遊標都玩不轉有木有?拿起VS寫個小程式不停的改又編譯很煩,有木有?

想用指令碼寫了有木有?
本文介紹使用python, adodbapi操作資料庫:
adodbapi 庫python 可以操作mssqlserver的類庫有幾個,支援python3.x的目前沒幾個靠譜的.adodbapi是使用ADO操作的.(不能跨平台?需要麼?)所以首先要安裝 

Python for Windows extensions

 ,有了pywin32這個擴充可以做很多事,用它操作EXCEL等,甚至比VBScript還要簡潔如:'''     self.xlBook=self.xlApp.Workbooks.Open(filename)     sht = self.xlBook.Worksheets(sheet)   
      sht.Cells(row, col).Value = value '''詳細過程:

首先添加引用:import adodbapi
adodbapi.adodbapi.verbose = False # adds details to the sample printout
import adodbapi.ado_consts as adc建立串連:    Cfg={'server':'192.168.29.86\\eclexpress','password':'xxxx','db':'pscitemp'}
    constr = r"Provider=SQLOLEDB.1; Initial Catalog=%s; Data Source=%s; user ID=%s; Password=%s; " \
         % (Cfg['db'], Cfg['server'], 'sa', Cfg['password'])
    conn=adodbapi.connect(constr)其中Cfg是個key-value字典,constr格式化文法是python2.x常用,在3.x可以使用下面的.執行sql語句:    cur=conn.cursor()
    sql='''select * from softextBook where title='{0}' and remark3!='{1}'
    '''.format(bookName,flag)
    cur.execute(sql)    data=cur.fetchall()
    cur.close()其中三個引號類似於C#字串前的"@",python中字串可以用一個或兩個,三個括起來,format格式化文法也類似執行預存程序:    #假設proName有三個參數,最後一個參數傳了null    ret=cur.callproc('procName',(parm1,parm2,None))    conn.commit()關閉串連conn.close()很簡單有木有?更多程式碼範例見安裝目錄下裡的unit test代碼:C:\Python31\Lib\site-packages\adodbapi\tests

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.