python python db cursor fetch all

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python python db cursor fetch all相关的知识,希望对你有一定的参考价值。

import MySQLdb
import getpass

#pip install mysql-python

user = raw_input("username: ")
print user
password = getpass.getpass("input the password: ")



dbmk = MySQLdb.Connect('db1',
                     user, password, 'btcchina_mk')

dbphpbb = MySQLdb.Connect('db2',
                     user, password, 'btcchina_mk')

c_mk = dbmk.cursor()
c_mk.execute("""select user_id, phone, phone_country from userdata where user_id = %s""", (2,))

for userdata in c_mk.fetchall():
    print userdata

以上是关于python python db cursor fetch all的主要内容,如果未能解决你的问题,请参考以下文章

python--pymysql

python3 的 mysql 简单操作

python连接MySQL数据库问题? cursor( ) 、execute()和fetc

python连接MySQL数据库问题? cursor( ) 、execute()和fetchall( )方法的作用?

python -- MySQLdb连接mysql数据库

python操作pymysql