代码搜索:SQLAlchemy

找到约 184 项符合「SQLAlchemy」的源代码

代码结果 184
www.eeworm.com/read/280962/4121256

py manytomany.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * from testlib import * from sqlalchemy import exceptions class Place(object): '''represents a pl
www.eeworm.com/read/280962/4121257

py selectable.py

"""all tests involving generic mapping to Select statements""" import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy import exceptions from sqlalchemy.orm import * fr
www.eeworm.com/read/280962/4121262

py expire.py

"""test attribute/instance expiration, deferral of attributes, etc.""" import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy import exceptions from sqlalchemy.orm imp
www.eeworm.com/read/280962/4121280

py lazy_relations.py

"""basic tests of lazy loaded attributes""" import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy import exceptions from sqlalchemy.orm import * from testlib import *
www.eeworm.com/read/280962/4121289

py ddlevents.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.schema import DDL import sqlalchemy from testlib import * class DDLEventTest(TestBase): class Canary(object
www.eeworm.com/read/280962/4121178

py pool.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from testlib import * from sqlalchemy.pool import QueuePool from sqlalchemy.databases import sqlite class QueuePoolTest(TestBase
www.eeworm.com/read/280962/4121218

py orderinglist.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.orderinglist import * from testlib import * metadata = None # order in whole
www.eeworm.com/read/280962/4121231

py quote.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy import sql from sqlalchemy.sql import compiler from testlib import * class QuoteTest(TestBase): def setUpAll
www.eeworm.com/read/280962/4121234

py query.py

import testenv; testenv.configure_for_tests() import datetime from sqlalchemy import * from sqlalchemy import exceptions, sql from sqlalchemy.engine import default from testlib import * class QueryT
www.eeworm.com/read/280962/4121240

py attributes.py

import testenv; testenv.configure_for_tests() import pickle import sqlalchemy.orm.attributes as attributes from sqlalchemy.orm.collections import collection from sqlalchemy import exceptions from test