代码搜索:sqlalchemy
找到约 184 项符合「sqlalchemy」的源代码
代码结果 184
www.eeworm.com/read/280962/4121185
py objselectspeed.py
import testenv; testenv.simple_setup()
import time, gc, resource
from sqlalchemy import *
from sqlalchemy.orm import *
db = create_engine('sqlite://')
metadata = MetaData(db)
Person_table = Table('P
www.eeworm.com/read/280962/4121192
py objupdatespeed.py
import testenv; testenv.configure_for_tests()
import time, gc, resource
from sqlalchemy import *
from sqlalchemy.orm import *
from testlib import *
NUM = 100
metadata = MetaData(testing.db)
Person_t
www.eeworm.com/read/280962/4121217
py mappers.py
"""mapper.py - defines mappers for domain objects, mapping operations"""
import zblog.tables as tables
import zblog.user as user
from zblog.blog import *
from sqlalchemy import *
from sqlalchemy.orm
www.eeworm.com/read/280962/4121212
py tests.py
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from sqlalchemy.orm import *
from testlib import *
from zblog import mappers, tables
from zblog.user import *
from zblog.blog imp
www.eeworm.com/read/280962/4121132
pkg-info
Metadata-Version: 1.0
Name: SQLAlchemy
Version: 0.4.3
Summary: Database Abstraction Library
Home-page: http://www.sqlalchemy.org
Author: Mike Bayer
Author-email: mike_mp@zzzcomputing.com
License: MIT
www.eeworm.com/read/280962/4121159
py testdocs.py
import sys
sys.path = ['../../lib', './lib/'] + sys.path
import os
import re
import doctest
import sqlalchemy.util as util
import sqlalchemy.logging as salog
import logging
salog.default_enabled=Tru
www.eeworm.com/read/280962/4121182
py massload2.py
import testenv; testenv.simple_setup()
import time
from sqlalchemy import *
from sqlalchemy.orm import *
metadata = MetaData(create_engine('sqlite://', echo=True))
t1s = Table( 't1s', metadata,
www.eeworm.com/read/421582/2051580
readme
This is a database migration repository.
More information at
http://code.google.com/p/sqlalchemy-migrate/
www.eeworm.com/read/280962/4121164
txt session.txt
Using the Session {@name=unitofwork}
============
The [Mapper](rel:advdatamapping) is the entrypoint to the configurational API of the SQLAlchemy object relational mapper. But the primary object
www.eeworm.com/read/280962/4121166
txt sqlexpression.txt
SQL Expression Language Tutorial {@name=sql}
===============================================
This tutorial will cover SQLAlchemy SQL Expressions, which are Python constructs that represent SQL statem