--------------------python控制mysql的API--------------------
#import MySQLdb:引用對應的開發包
#conn=MySQLdb.connect
(host='localhost',user='root',passwd='root',db='test',port=3306):建立數據
庫鏈接
#cur=conn.cursor():建立遊標python
#cur.execute(self, query, args):執行單條sql語句,接收的參數爲sql語句自己和
使用的參數列表,返回值爲受影響的行數
#cur.executemany(self, query, args):執行單挑sql語句,可是重複執行參數列表裏
的參數,返回值爲受影響的行數mysql
#cursor用來執行命令的方法:
#cur.commit():提交。修改數據庫的時候須要在執行操做後,使用commit對數據庫
進行修改操做
#cur.rollback():回滾sql
#cursor用來接受返回值的方法:
#cur.fetchall(self):接收所有的返回結果行。
#cur.fetchmany(self, size=None):接收size條返回結果行.若是size的值大於返回
的結果行的數量,則會返回cursor.arraysize條數據。
#cur.fetchone(self):fetchone(self):返回一條結果行。
#cur.rowcount:獲取結果集的條數。
#cur.description:獲取鏈接對象的描述信息。
#cur.rowcount:獲取影響了多少行。數據庫
#scroll(self, int, mode='relative'):
int:移動的行數,整數;在相對模式下,正數向下移動,負值表示向上移動。
mode:移動的模式,默認是relative,相對模式;可接受absoulte,絕對模式。
#cur.close():進行遊標的關閉
#conn.close():進行數據庫鏈接的關閉操做
#except mdb.Error,e:
conn.rollback()ubuntu
--------------------配置mysql所在操做系統進行遠程服務操做--------------------
一、建立新用戶:
mysql -uroot -p:登陸到mysql中
use mysql:打開對應的mysql數據庫
insert into mysql.user(Host,User,Password) values
("localhost","test","1234"):建立一個用戶(此處的"localhost",是指該用戶只
能在本地登陸,不能在另一臺機器上遠程登陸。若是想遠程登陸的話,
將"localhost"改成"%",表示在任何一臺電腦上均可以登陸。也能夠指定某臺機器可
以遠程登陸。)ide
二、權限:
(1)這裏的意思是全部數據庫裏的全部表都受權給用戶
grant all privileges on testDB.* to test@localhost identified by
'1234'with grant option
grant select,delete,update,create,drop on *.* to test@"%" identified
by "1234";fetch
(2)flush privileges;:刷新系統權限表操作系統
注意:IDENTIFIED BY後面是你的mysql root用戶密碼rest
test用戶對全部數據庫都有select,delete,update,create,drop 權限。
@"%" 表示對全部非本地主機受權,不包括localhost。(localhost地址設爲
127.0.0.1)
對localhost受權:加上一句grant all privileges on testDB.* to
test@localhost identified by '1234';便可。對象
三、最後只要重啓mysql就好了
/etc/init.d/mysql restart
----------------------從ubuntu鏈接到win下的mysql的設置--------------------
mysql -uroot -p use mysql;
update user set host = '%' where user = 'root';
flush privileges;