win cmd 中输入 easy_install MySQL-python 或者 pip install MySQL-python
Linux apt-get install python-dev 或者 yum install python-devel
最笨的方法,到http://www.cr173.com/soft/22957.html这里下载了MySQL-python.rar安装包进行安装。
Linux apt-get install python-dev 或者 yum install python-devel
最笨的方法,到http://www.cr173.com/soft/22957.html这里下载了MySQL-python.rar安装包进行安装。
2015-10-14
python DB API:
conn=connect(host, post, user, password, database)
** connection object
> conn.cursor()
> conn.commit()
> conn.rollback()
> conn.close()
** cursor object
> cursor.execute(sql_query)
> cursor.rowcount
> cursor.fetchone()
> cursor.fetchmany(num)
> cursor.fetchall()
> cursor.all()
conn=connect(host, post, user, password, database)
** connection object
> conn.cursor()
> conn.commit()
> conn.rollback()
> conn.close()
** cursor object
> cursor.execute(sql_query)
> cursor.rowcount
> cursor.fetchone()
> cursor.fetchmany(num)
> cursor.fetchall()
> cursor.all()