0

私は、modwsgiを使用してApacheの下にCherryPy「サイト」を設定しています。正常に動作し、HelloWorldメッセージを問題なく返すことができます。問題は、MySQLデータベースに接続しようとしたときです。これが私が使用しているコードです。

import sys
sys.stdout = sys.stderr

import atexit
import threading
import cherrypy

import MySQLdb

cherrypy.config.update({'environment': 'embedded'})

if cherrypy.__version__.startswith('3.0') and cherrypy.engine.state == 0:
    cherrypy.engine.start(blocking=False)
    atexit.register(cherrypy.engine.stop)

def initServer():
    global db
    db=MySQLdb.connect(host="localhost", user="root",passwd="pass",db="Penguin")

class Login(object):
    def index(self):
        return 'Login Page'
    index.exposed = True

class Root(object):
    login = Login();

    def index(self):
        # Sample page that displays the number of records in "table" 
        # Open a cursor, using the DB connection for the current thread 
        c=db.cursor()
        c.execute('SELECT count(*) FROM Users')
        result=cursor.fetchall()
        cursor.close()

        return 'Help' + result

    index.exposed = True


application = cherrypy.Application(Root(), script_name=None, config=None)

これらのほとんどは、modwsgiのセットアップ時にCherryPyサイトからコピーされたもので、さまざまなインターネットソースから集めたデータベースのものを追加しただけです。

ルートページを表示しようとすると、500内部サーバーエラーが発生します。ログインページには問題なくアクセスできますが、データベース接続がどういうわけか混乱していると確信しています。

4

1 に答える 1

1

CherryPyとは関係のない、たくさんのエラーがあります。

def initServer():
    global db

dbグローバルスコープで定義されていません。試す:

db = None
def initServer():
    global db

さらにinitServer()、DB接続を作成するために呼び出されることはありません。

別:

c = db.cursor()
c.execute('SELECT count(*) FROM Users')
result = cursor.fetchall()
cursor.close()

cursor定義されてない。私はあなたが意味すると思いますc

c = db.cursor()
c.execute('SELECT count(*) FROM Users')
result = c.fetchall()
c.close()
于 2013-01-24T03:40:04.920 に答える