代码搜索:sqlalchemy
找到约 184 项符合「sqlalchemy」的源代码
代码结果 184
www.eeworm.com/read/280962/4121183
py masscreate.py
# times how long it takes to create 26000 objects
import testenv; testenv.simple_setup()
from sqlalchemy.orm import attributes
import time
import gc
manage_attributes = True
init_attributes = manage
www.eeworm.com/read/280962/4121078
py access.py
# access.py
# Copyright (C) 2007 Paul Johnston, paj@pajhome.org.uk
# Portions derived from jet2sql.py by Matt Keranen, mksql@yahoo.com
#
# This module is part of SQLAlchemy and is released under
# the
www.eeworm.com/read/280962/4121223
py unicode.py
# coding: utf-8
"""verrrrry basic unicode column name testing"""
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from testlib import *
from testlib.engines import utf8_engine
f
www.eeworm.com/read/280962/4121173
py genhtml.py
#!/usr/bin/env python
import sys,re,os,shutil
from os import path
import cPickle as pickle
sys.path = ['../../lib', './lib'] + sys.path
import sqlalchemy
import gen_docstrings, read_markdown, toc
fr