mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-26 10:32:33 -04:00
70d38af42e
to a DBLINK remote database; while the syntax has been present in the Oracle dialect for some time, up until now it has never been tested. The syntax has been tested against a sample database linking to itself, however there's still some uncertainty as to what should be used for the "owner" when querying the remote database for table information. Currently, the value of "username" from user_db_links is used to match the "owner". [ticket:2619]
35 lines
1.1 KiB
INI
35 lines
1.1 KiB
INI
[egg_info]
|
|
tag_build = dev
|
|
|
|
[nosetests]
|
|
with-sqla_testing = true
|
|
exclude = ^examples
|
|
first-package-wins = true
|
|
where = test
|
|
|
|
[sqla_testing]
|
|
requirement_cls=test.requirements:DefaultRequirements
|
|
profile_file=test/profiles.txt
|
|
|
|
# name of a "loopback" link set up on the oracle database.
|
|
# to create this, suppose your DB is scott/tiger@xe. You'd create it
|
|
# like:
|
|
# create database link test_link connect to scott identified by tiger using 'xe';
|
|
oracle_db_link = test_link
|
|
|
|
|
|
[db]
|
|
default=sqlite:///:memory:
|
|
sqlite=sqlite:///:memory:
|
|
sqlite_file=sqlite:///querytest.db
|
|
postgresql=postgresql://scott:tiger@127.0.0.1:5432/test
|
|
postgres=postgresql://scott:tiger@127.0.0.1:5432/test
|
|
pg8000=postgresql+pg8000://scott:tiger@127.0.0.1:5432/test
|
|
postgresql_jython=postgresql+zxjdbc://scott:tiger@127.0.0.1:5432/test
|
|
mysql_jython=mysql+zxjdbc://scott:tiger@127.0.0.1:5432/test
|
|
mysql=mysql://scott:tiger@127.0.0.1:3306/test
|
|
pymysql=mysql+pymysql://scott:tiger@127.0.0.1:3306/test?use_unicode=0&charset=utf8
|
|
oracle=oracle://scott:tiger@127.0.0.1:1521
|
|
oracle8=oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0
|
|
maxdb=maxdb://MONA:RED@/maxdb1
|