import MySQLdb
db = MySQLdb.connect("localhost", "root", "","bullsorbit")
cursor = db.cursor()
cursor.execute("Select * from table where conditions'")
numrows = int(cursor.rowcount)
print 'Total number of Pages : %d ' % numrows
が、私は私のIPアドレス
db = MySQLdb.connect("192.168.*.*", "root", "","bullsorbit")
を与える場合には、このエラーにあなたが経由での接続はlocalhostと
super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'ip address' (111)")
ローカルではない接続でrootがログインできるようにサーバーが構成されていますか? –