Python连接示例
<p class="p">Python连接示例如下:</p>
<pre class="pre codeblock"><code>#!/usr/bin/python
# -*- coding: UTF-8 -*-
import MySQLdb
# 打开数据库连接
db = MySQLdb.connect(
host='<域名>',
port=<端口号>,
user='<用户名>',
passwd='<密码>',
db='<数据库名>')
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# 使用execute方法执行SQL语句
cursor.execute('SELECT VERSION()')
# 使用 fetchone() 方法获取一条数据
data = cursor.fetchone()
print "Database version : %s " % data
# 关闭数据库连接
db.close()</code></pre>
提交成功!非常感谢您的反馈,我们会继续努力做到更好!