這篇文章主要介紹了關於django 多數據庫配置教程,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
在django項目中, 一個工程中存在多個APP應用程式很常見. 有時候希望不同的APP連接不同的資料庫,這個時候需要建立多個資料庫連線。
1. 修改專案的settings 設定
#在settings.py 中設定需要連接的多個資料庫連接字串
#
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'sqlite3'), }, 'db01': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db_01'), }, 'db02': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db_02'), }, }
假設現在我們用到3個資料庫,一個default預設函式庫,一個db01 和db02
2. 設定資料庫的路由規則方法
在settings.py 中設定DATABASE_ROUTERS
DATABASE_ROUTERS = ['Prject.database_router.DatabaseAppsRouter']
Project: 建立的django專案名稱(project_name)
database_router: 定義路由規則 database_router.py 檔案名稱, 這個檔案名稱可以自己定義
DatabaseAppsRouter: 路由規則的類別名稱,這個類別是在database_router.py 檔案中定義
3. 設定APP對應的資料庫路由表
每個APP要連接哪個資料庫,需要在做匹配設置,在settings.py 檔案中做如下設定:
DATABASE_APPS_MAPPING = { # example: # 'app_name':'database_name', 'app02': 'db02', 'app01': 'db01', 'admin': 'db01', 'auth': 'db01', 'contenttypes': 'db01', 'sessions': 'db01', }
以上的app01, app02是專案中的APP名,分別指定到db01, db02 的資料庫。
為了讓django自己的表格也建立到你自己定義的資料庫中,你可以指定: admin, auth, contenttypes, sessions 到設定的資料庫中,如果不指定則會自動建立到預設( default)的資料庫中
4. 建立資料庫路由規則
在專案工程根路徑下(與settings.py 檔案一級)建立database_router.py 檔案:
from django.conf import settings DATABASE_MAPPING = settings.DATABASE_APPS_MAPPING class DatabaseAppsRouter(object): """ A router to control all database operations on models for different databases. In case an app is not set in settings.DATABASE_APPS_MAPPING, the router will fallback to the `default` database. Settings example: DATABASE_APPS_MAPPING = {'app1': 'db1', 'app2': 'db2'} """ def db_for_read(self, model, **hints): """"Point all read operations to the specific database.""" if model._meta.app_label in DATABASE_MAPPING: return DATABASE_MAPPING[model._meta.app_label] return None def db_for_write(self, model, **hints): """Point all write operations to the specific database.""" if model._meta.app_label in DATABASE_MAPPING: return DATABASE_MAPPING[model._meta.app_label] return None def allow_relation(self, obj1, obj2, **hints): """Allow any relation between apps that use the same database.""" db_obj1 = DATABASE_MAPPING.get(obj1._meta.app_label) db_obj2 = DATABASE_MAPPING.get(obj2._meta.app_label) if db_obj1 and db_obj2: if db_obj1 == db_obj2: return True else: return False return None def allow_syncdb(self, db, model): """Make sure that apps only appear in the related database.""" if db in DATABASE_MAPPING.values(): return DATABASE_MAPPING.get(model._meta.app_label) == db elif model._meta.app_label in DATABASE_MAPPING: return False return None def allow_migrate(self, db, app_label, model=None, **hints): """ Make sure the auth app only appears in the 'auth_db' database. """ if db in DATABASE_MAPPING.values(): return DATABASE_MAPPING.get(app_label) == db elif app_label in DATABASE_MAPPING: return False return None
#5. Models建立範例
在各自的APP 中建立資料表的models時,必須要指定表的app_label 名字,如果不指定則會建立到default 中配置的資料庫名稱下,
如下:
在app01下建立models
class Users(models.Model): name = models.CharField(max_length=50) passwd = models.CharField(max_length=100) def __str__(self): return "app01 %s " % self.name class Meta: app_label = "app01"
#在app02下建立models
##
class Users(models.Model): username = models.CharField(max_length=100) password = models.CharField(max_length=50) age = models.IntegerField() def __str__(self): return "app02 %s" % self.username class Meta: app_label = "app02" class Book(models.Model): user = models.ForeignKey("Users", on_delete=models.CASCADE) bookname = models.CharField(max_length=100) def __str__(self): return "%s: %s" % (self.user.username, self.bookname) class Meta: app_label = "app02"
#
class Users(models.Model): username = models.CharField(max_length=100)
6. 產生資料表
在使用django的migrate 建立生成表的時候,需要加上–database 參數,如果不加則將未指定app_label 的APP的models中的表創建到default指定的資料庫中,如:將app01下models中的表建立到db01的資料庫」db_01」中./ manage.py migrate --database=db01
./ manage.py migrate --database=db02
###################
./ manage.py migrate
models.User.objects.using(dbname).all()
以上是django 多資料庫設定教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!