Python3學習筆記06-數據庫之SQLite篇

    Python3自帶了SQLite3數據庫,使用前引入便可。python import sqlite3 con = sqlite3.connect('d:/test.db3') #test.db3存在則直接讀取,不存在則建立 cur=con.cursor() #遊標,能夠認爲相似於recordset cur.execute('CREATE TABLE Student(Stuid
相關文章
相關標籤/搜索