cost 190 ms
Pandas to_sql 在附加到 sqlite 表時忽略外鍵約束?

[英]Pandas to_sql ignores foreign key constrains when appending to sqlite table?

我使用 pandas 方法to_sql到 append DataFrame 到一些 sqlite 表。 sqlite 表在 pandas 應該考慮的列id_region上有一個外鍵約束。 id_region的可用值為 1、2。 如果 DataFrame 包含一個不存在的id_region值 3 ...

IntegrityError Django ForeignKey 設置為無

[英]IntegrityError Django ForeignKey sets to none

我在為 author 變量的 model 字段之一中設置外鍵時遇到了問題。 見下文: 只要我將“null=True”添加到 ForeignKey 字段,它就可以工作並且我沒有收到錯誤,但是模板顯示我的變量 ({bug.author}} 等於“None”,無論我是誰signed in as. 我嘗試多 ...

使用 prisma 客戶端在 typescript 中從父級引用子 model

[英]References a sub model from parent in typescript using prisma client

我正在學習 prisma,如果返回的數據包含子 model,我無法弄清楚如何正確使用 prisma 類型。 比如我有下面兩張表 然后我使用以下方法從服務 model 中提取數據: 然后我在客戶端引用Services model,但 IDE 沒有檢測到Services可以包含sub_services ...

獲取插入外鍵值的最佳方法 SQLite c#

[英]Best way to get value for inserting into foreign key SQLite c#

例如,當您有兩個帶有外鍵的表時CREATE TABLE departments ( department_id INTEGER PRIMARY KEY AUTOINCREMENT, department_name VARCHAR ); CREATE TABLE employees ( emp ...

MySQL InnoDB:鎖定外鍵的目的地

[英]MySQL InnoDB: locking the destination of foreign keys

當我添加引用另一個表的行(在事務中)時,MySQL 似乎鎖定了被引用的整行。 這可以防止更新目標表中應該能夠並發運行而不會出現任何問題的其他列。 簡化示例: 任務一: 任務乙: 任何想法如何避免這種僵局? 任務 A 應該只讀鎖定它實際引用的單個值,因此任務 B 不能重新編號或刪除t1[id=2].i ...

如何更新或插入具有來自父表的外鍵約束的子表

[英]How to update or insert a child table which having foreign key constrains from parent table

我有以下兩個父表(UserLogins、UserSecurityQuestions)和一個子表 - UserSecurityAnswers #子表 #INsert 值到父表 現在我正在用以下值更新表 UserSecurityAnswers 但我得到低於錯誤 在這種情況下,我希望子表會從父表繼承值 ...

Laravel。此集合實例上不存在屬性。 關系錯誤

[英]Laravel. Property does not exist on this collection instance. Relation error

我嘗試在我的數據庫中的不同表之間創建關系並從這些表中獲取數據,但出現錯誤:此集合實例上不存在屬性。 這是我的代碼: 遷移文件: 在模型\作者中: 在模型\書籍中: 在作者控制器中: 在圖書控制器中: 如果有人知道如何解決這個問題,我將不勝感激。 ...

將表格與 ORM 棱鏡相關聯

[英]relating tables with the ORM prism

使用 PostgreSQL,我想制作一個管理日常習慣的應用程序。 我正在嘗試建立從 User 表到 Habits 和 Habits 到其他表的一對多關系。 創造習慣,當有不止一種習慣時,新的習慣會覆蓋之前的習慣。 代碼rest ...

SQLAlchemy 在多對多關系中找不到通過外鍵引用的表

[英]SQLAlchemy cannot find referenced table via foreignkey in many-to-many relationship

我已經成功地在我的數據庫中添加了一個多對多關系。 但是,當嘗試添加另一個時,我遇到了: sqlalchemy.exc.NoReferencedTableError: Foreign key associated with column 'user_shiftTemplate.template_id' ...

偶爾 Laravel firstOrCreate 導致 0 id 值並導致 Integrity constraint violation: 1452 Cannot add or update a child row

[英]Occasionally Laravel firstOrCreate results in 0 id value and results in Integrity constraint violation: 1452 Cannot add or update a child row

作業文件 客戶.php Model 有時,我會收到以下錯誤: SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails ...

如何使用外鍵搜索一些數據?

[英]How to search some data with foreign key?

在我的網站上我有一些廣告。 我正在嘗試使用外鍵過濾/搜索廣告。 在我的廣告中,我有一些值,例如“名稱”或“city_id”。 City_id 是我所有法國城市的外鍵。 在我的示例中,我想搜索包含城市“Le mans”的廣告。 勒芒是 id = 1。 因此,當用戶寫“Le mans”時,我需要在 ...

更新子表行時是否檢查外鍵約束?

[英]Are foreign key constraints checked when child table row is updated?

使用 PostgresSQL 文檔中的示例,其中orders.product_no引用外鍵products.product_no 。 考慮對“子表” orders進行以下更新: UPDATE orders SET product_no = 'new_no', quantity = 'new_qua ...

在引用身份用戶表的實體框架核心中的表上創建外鍵

[英]Create a foreign key on a table in entity framework core that references the identity user table

我正在嘗試創建從 AspNet Identity 自動生成的 AspNetUsers 表到我自己創建的表的關系。 前任。 表 A 的 UserId 列設置為 nvarchar(128),我希望它與 AspNet Users 表的 UserId 列相關。 這是一個 Asp.Net MVC web 應用 ...

Django:驗證外鍵之間的關系

[英]Django: Validate relationships among ForeignKeys

我有一個帶有兩個ForeignKey的 model Run , signup和report , 指向模型,而模型又與另一個 model Training相關, 創建Run時,我想確保它的signup和report是針對同一個Training的,即report.training == signup.t ...

BelongsTo/HasOne 關聯是否意味着 BelongsTo 的 Model 必須始終具有關聯的 Model?

[英]Does a BelongsTo/HasOne Association mean the Model that BelongsTo the other must always have an associated Model?

給定模型“Animal”和“Person”,其中 Animal BelongsTo Person 和 Person HasOne Animal,這是否意味着每個 Animal 實例都將始終有一個與 Animal 關聯的 Person 實例(由於 Animal Belonging To Person ...

etl-process:從 python-dataframe 到 postgres SQLAlchemy

[英]etl-process: from python-dataframe to postgres with SQLAlchemy

我想使用 Python 的 SQLAlchemy package 在 Postgres 數據庫中創建表,並將 dataframe 中的數據插入其中。 我還想分配外鍵和主鍵。 下面的代碼創建了兩個表,但是在模式“public”而不是模式“my_schema”中。 誰能找到錯誤? ...

Django 未顯示使用帶有 select_related 的對象的所有字段

[英]Django not showing up all fields using objects with select_related

我在 Django 中遇到了一個煩人的錯誤,我不知道該如何解決。 我正在嘗試使用 INNER JOIN 顯示另一個表中的名稱,但無法正常工作。 澄清一下,我有兩個數據庫canaisAssoc和formatosAssoc ,我試圖從 canaisAssoc 顯示 canais 的名稱,從 format ...


 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM