千家信息网

python操作数据库

发表于:2024-11-18 作者:千家信息网编辑
千家信息网最后更新 2024年11月18日,#!/usr/bin/env python#encoding:utf-8import MySQLdbprint ""print ""print "book"print ""connectio
千家信息网最后更新 2024年11月18日python操作数据库
#!/usr/bin/env python#encoding:utf-8import MySQLdbprint ""print ""print "

book

"print "
    "connection = MySQLdb.connect(user="root", passwd="123456", db="zabbix")cursor = connection.cursor()cursor.execute("SELECT * FROM users")for row in cursor.fetchall(): print "
  • %s
  • " % row[0]print "
"print ""


[root@bogon ~]# python mysql.py

book

  • 1
  • 2
[root@bogon ~]#

yum install MySQL-python

0