python------mysql API
阿新 • • 發佈:2019-01-13
提示 外部 *** get pymysql -h () 返回 cnblogs
參考引用博客:http://www.cnblogs.com/wupeiqi/articles/5713330.html
ifconfig是linux中用於顯示或配置網絡設備(網絡接口卡)的命令,英文全稱是network interfaces configuring。
在winxp中沒有“ifconfig”這個命令。當然就會提示“不是內部或者外部命令,也不是可運行的程序”。
在winxp中,有個cmd下使用的命令應該是“ipconfig”。
一. python mysql API
說明: localhost其實就是127.0.0.1,你也可以ping一下這個地址看通不通。
數據庫默認端口,不用改;
你的數據庫名字。
1 import pymysql 2 # 創建連接 3 conn = pymysql.connect(host=‘127.0.0.1‘, port=3306, user=‘root‘, passwd=‘*******‘, db=‘xiaolazi‘) 4 # 創建遊標 5 cursor = conn.cursor() 6 #執行SQL,並返回收影響行數 7 # effect_row = cursor.execute("select * from student") 8 # print(effect_row) 9 # print(cursor.fetchone()) #取出表中數據10 # print("---" * 10) 11 # print(cursor.fetchall()) #取出表中所有數據 12 13 data = [ 14 (6,"yaoburan",19,"2019-01-03"), 15 (7,"xuyuan",17,"2019-01-14"), 16 (8,"yanyan",18,"2019-01-06"), 17 ] 18 19 cursor.executemany("insert into student (id,name,age,register_date) values(%s,%s,%s,%s)", data) #默認開啟事物,得commit,即確認才真正插入到數據表中20 conn.commit() 21 effect_row = cursor.execute("select * from student") 22 print(cursor.fetchall()) #取出表中所有數據 23 # 關閉遊標 24 cursor.close() 25 # 關閉連接 26 conn.close()
python------mysql API