代码搜索:sqlalchemy

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

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

py reconnect.py

import testenv; testenv.configure_for_tests() import sys, weakref from sqlalchemy import create_engine, exceptions, select from testlib import * class MockDisconnect(Exception): pass class Mock
www.eeworm.com/read/280962/4121180

py compiler.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from testlib import * class CompileTest(TestBase, AssertsExecutionResults): def setUpAll(self): global t1, t2, meta
www.eeworm.com/read/280962/4121249

py assorted_eager.py

"""eager loading unittests derived from mailing list-reported problems and trac tickets.""" import testenv; testenv.configure_for_tests() import random, datetime from sqlalchemy import * from sqlalch
www.eeworm.com/read/280962/4121075

py maxdb.py

# maxdb.py # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php """Support for the MaxDB database. TODO: More module docs
www.eeworm.com/read/280962/4121096

py topological.py

# topological.py # Copyright (C) 2005, 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/
www.eeworm.com/read/280962/4121114

py __init__.py

# mapper/__init__.py # Copyright (C) 2005, 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.
www.eeworm.com/read/280962/4121121

py uowdumper.py

# orm/uowdumper.py # Copyright (C) 2005, 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.or
www.eeworm.com/read/280962/4121124

py __init__.py

# engine/__init__.py # Copyright (C) 2005, 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.
www.eeworm.com/read/280962/4121196

py except.py

"""Tests exceptions and DB-API exception wrapping.""" import testenv; testenv.configure_for_tests() import sys, unittest import exceptions as stdlib_exceptions from sqlalchemy import exceptions as sa_
www.eeworm.com/read/280962/4121221

py activemapper.py

import testenv; testenv.configure_for_tests() from datetime import datetime from sqlalchemy.ext.activemapper import ActiveMapper, column, one_to_many, one_to_one, many_to_many, objectstore