我在tables.py -
中有两个表db.define_table('spr_details',
Field('SPR_name', 'string', unique=True, notnull=True),
Field('Object_location',notnull=True),
Field('NSK_System',notnull=True,),
primarykey = ['SPR_name'],migrate=True)
db.define_table('my_master_table',
Field('Test_id',notnull=True),
Field('Test_suite',notnull=True),
Field('Test_category',notnull=True),
Field('Test_unit',notnull=True),
Field('Test_case',notnull=True),
Field ('Applicability', db.spr_details,'string'),migrate=True)
我在spr_details表中插入了一行。现在,当我在my_master表中插入记录时,我从Applicability下拉列中选择以前插入的值。但在提交时,我正在
下面的FOREIGN KEY约束失败错误。
是堆栈跟踪 -
Traceback
Traceback (most recent call last):
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\restricted.py", line 219, in restricted
exec(ccode, environment)
File "C:/Users/pandeyar/Downloads/web2py_src/web2py/applications/JDBC_E2E/controllers/default.py", line 183, in <module>
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\globals.py", line 419, in <lambda>
self._caller = lambda f: f()
File "C:/Users/pandeyar/Downloads/web2py_src/web2py/applications/JDBC_E2E/controllers/default.py", line 99, in admin
user_signature=False,
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\sqlhtml.py", line 3338, in smartgrid
user_signature=user_signature, **kwargs)
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\sqlhtml.py", line 2534, in grid
onsuccess=oncreate)
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\html.py", line 2300, in process
self.validate(**kwargs)
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\html.py", line 2238, in validate
if self.accepts(**kwargs):
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\sqlhtml.py", line 1965, in accepts
self.vars.id = self.table.insert(**fields)
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\packages\dal\pydal\objects.py", line 753, in insert
ret = self._db._adapter.insert(self, row.op_values())
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\packages\dal\pydal\adapters\base.py", line 486, in insert
raise e
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\packages\dal\pydal\adapters\base.py", line 481, in insert
self.execute(query)
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\packages\dal\pydal\adapters\__init__.py", line 67, in wrap
return f(*args, **kwargs)
File "C:\Users\pandeyar\Downloads\web2py_src\web2py\gluon\packages\dal\pydal\adapters\base.py", line 412, in execute
rv = self.cursor.execute(command, *args[1:], **kwargs)
sqlite3.IntegrityError: FOREIGN KEY constraint failed
任何帮助都会非常有帮助。
答案 0 :(得分:0)
请参阅keyed tables上的文档(即主键不是默认自动递增整数ID字段的表),因为spr_details
就是这样一个表。
请注意,参考字段定义存在两个问题:
Field('Applicability', db.spr_details, 'string')
首先,如文档中所述,在引用键控表时,type
Field()
参数的格式必须为'reference tablename.fieldname'
,而不是db.tablename
。其次,你没有单独指定引用字段的类型(即,你不应该将'string'
作为第三个参数传递给Field()
,因为第三个参数是length
参数,不是type
- 根据引用字段的类型推断type
。因此,字段定义应为:
Field('Applicability', 'reference spr_details.SPR_name')
注意,对于Applicability
字段的当前错误定义,该字段将变为整数字段(因为它期望存储对外部表中的整数ID字段的引用)。如果您尝试插入一个整数,您将收到外键约束失败错误,如果您尝试插入一个字符串,您将收到有关插入一个预期int
的字符串的错误。如果使用如上所示的正确字段定义并插入与db.spr_details.SPR_name
字段中存在的值匹配的字符串值,则不应出现任何错误。
另请注意,web2py假定键控表将一起使用(即,引用表和引用表都将被键控)。因此,例如,如果您将SQLFORM
与my_master_table
一起使用,默认情况下会假设因为my_master_table
没有键入,所以它引用的spr_details
表也没有。因此,它会尝试将SPR_details
的值转换为整数ID(这会导致转换为0
,从而导致外键约束错误)。要解决此问题,您应该手动处理数据库插入和更新 - 例如:
form = SQLFORM(db.my_master_table).process(dbio=False)
if form.accepted:
db.my_master_table.insert(**form.vars)
在上面,设置dbio=False
会阻止SQLFORM
执行插入操作(这会导致错误)。相反,插入是使用form.vars
中的值显式完成的。