English 中文(简体)
扎尔·米苏卡利模块
原标题:Python MySQL module

我正在开发一个网络应用程序,需要与MySQL数据库连接,而我似乎无法找到任何真正好的模块。

I m专门寻找能够处理数以百计连接的快速模块(和查询,均在短时期内),但不会对速度产生重大影响。

最佳回答

MySQLdb,这在城市中是获得普思松我sql出入的唯一游戏。

问题回答

我认为,我的回答将是游戏领域的最新情况。

现在有官方的MysQL-030Linkor。

Install:

sudo pip install mysql-connector-python

或从这里下载:

http://dev.mysql.com/downloads/jointor/python/

Documentation: http://dev.mysql.com/doc/refman/5.5/en/connector-python.html

我通常使用SQLObject,但我没有在高度紧张的条件下使用过,因此,我可以说,我不讲against<>。

从另一个答复中抄录一些《刑法》:

from sqlobject import *

# Replace this with the URI for your actual database
connection = connectionForURI( mysql://server:XXXX )
sqlhub.processConnection = connection

# This defines the columns for your database table. See SQLObject docs for how it
# does its conversions for class attributes <-> database columns (underscores to camel
# case, generally)

class Song(SQLObject):

    name = StringCol()
    artist = StringCol()
    album = StringCol()

# Create fake data for demo - this is not needed for the real thing
def MakeFakeDB():
    Song.createTable()
    s1 = Song(name="B Song",
              artist="Artist1",
              album="Album1")
    s2 = Song(name="A Song",
              artist="Artist2",
              album="Album2")

def Main():
    # This is an iterable, not a list
    all_songs = Song.select().orderBy(Song.q.name)

    # Do something by iterating over the song list...

oursql是Python-mysql访问的另一个选择。 它比我的SQLdb更加完整地包涵了平衡。 在我的经历中,有许多其他特点,需要更快。





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...