ssk’s posterous

ssk’s posterous

Dec 8 / 12:04am

Database Engines — SQLAlchemy 0.6beta1 Documentation

by ssk

Downloads for each DBAPI at the time of this writing are as follows:

S3 書いてない

Filed under  //  sqlalchemy  

Comments (0)

Jul 16 / 1:50am

Frank Wierzbicki's Weblog: SQLAlchemy, MySQL, and Jython

by ssk
from sqlalchemy import *

db = create_engine('mysql://username:password@localhost/mydb')
metadata = BoundMetaData(db)

users_table = Table('users', metadata, autoload=True)

s = users_table.select()
r = s.execute()
print r.fetchall()

Filed under  //  python   sqlalchemy  

Comments (0)