python3使用mysql的基礎

2021-09-24 11:11:28 字數 996 閱讀 9122

前段時間用python3寫了乙個前端web頁面,實現從mysql資料庫提取資料並做乙個展示,東西都很基礎,記錄一下怕以後忘記。

python中:

for example:

import mysqldb

conn = mysqldb.connect(host=「ip位址」,user="###",passwd="###",db="###",port=11306,charset=「utf8」) #建立連線

cur = conn.cursor() #游標

cur.execute(「select * from statis」) #執行搜尋

cur.execute(「select * from statis where id=1」)

line_first = cur.fetchone()

print (line_first)

最後一定要關閉資料庫和游標:

cur.close()

conn.close()

cur.execute("insert into info 。。。『』)#插入資料

conn.commit()

在終端:

mysql -u root -p #連線

show databases;

use test(資料庫名);

show tables;

desc info(表名);

create table users(id int(2) not null primary key auto_increment,username varchar(40),password text,email text)default charset=utf8;

搜尋:select * from …

分組搜尋用group by…

最後說一下,web框架我是用tornado 寫的,簡潔實用,不做過多介紹了。

python3使用 python3使用模組

python內建了很多非常有用的模組,只要安裝完畢,這些模組就可以立刻使用。我們以內建的sys模組為例,編寫乙個hello的模組 usr bin env python3 coding utf 8 a test module author michael liao import sys def tes...

python3的使用技巧

字典合併 d1 d2 d3 d1.updatr d2 d1.updatr d3 python3.5以上 生成新的字典 d1 d2 d3 也可以快速的生成字典 字典訪問 d d name d.get name 訪問name對應的value c d.get nam unknow 當訪問不存在的key,會...

python 元組使用 Python3

python3 元組 python 的元組與列表類似,不同之處在於元組的元素不能修改。元組使用小括號 列表使用方括號 元組建立很簡單,只需要在括號中新增元素,並使用逗號隔開即可。例項 python 3.0 tup1 google runoob 1997,2000 tup2 1,2,3,4,5 tup...