摘要:
import MySQLdb,systry: conn=MySQLdb.connect(host='127.0.0.1',port=3306,user='root',passwd='123',db='db1')except Exception,e: print e sys.exit(0) cursor=conn.cursor()try:#Add cursor.execute("insert into table1(name,address,year) values('Jack2','ddd' 阅读全文
摘要:
#coding=utf-8importMySQLdbif__name__=="__main__":db=MySQLdb.connect(host='localhost',port=3306,user='root',passwd=XX',db='XX')cursor=db.cursor()sql="select*fromstudent"cursor.execute(sql)forlineincursor.fetchall():printlinedb.close()运行时出现如下错误:[plain]vi 阅读全文
摘要:
在MySQL中的命令要以分号结尾1.连接数据库格式:mysql-h主机地址-u用户名-p用户密码1、例1:连接到本机上的MYSQL。首先在打开DOS窗口,然后进入目录mysqlbin,再键入命令mysql-uroot-p,回车后提示你输密码,如果刚安装好MYSQL,超级用户root是没有密码的,故直接回车即可进入到MYSQL中了,MYSQL的提示符是:mysql>试验成功由于无密码,用mysql–uroot亦可2、例2:连接到远程主机上的MYSQL。假设远程主机的IP为:110.110.110.110,用户名为root,密码为abcd123。则键入以下命令:mysql-h110.110. 阅读全文