英文:
Django - No such column: rowid when migrating Spatialite database
问题
我正在尝试使用GeoDjango创建一个数据库,但当我尝试迁移数据库时,我收到错误信息"error in trigger ISO_metadata_reference_row_id_value_insert: no such column: rowid"。我已经添加了正确的数据库引擎并在settings.py
中包含了'django.contrib.gis'
。您有什么想法,问题可能出在哪里?
错误:
python3 ./manage.py migrate
Operations to perform:
Apply all migrations: admin, api, auth, contenttypes, sessions
Running migrations:
Applying admin.0002_logentry_remove_auto_add...Traceback (most recent call last):
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/utils.py", line 89, in _execute
return self.cursor execute(sql, params)
sqlite3.OperationalError: error in trigger ISO_metadata_reference_row_id_value_insert: no such column: rowid
我尝试删除旧的迁移,更新到最新版本的Spatialite-tools。如果我删除模型中的所有字段,仍然会收到错误消息。
英文:
I am trying to create a database using GeoDjango, but when I try to migrate the database I get "error in trigger ISO_metadata_reference_row_id_value_insert: no such column: rowid". I have added the right database engine and included 'django.contrib.gis',
in settings.py
. Any ide what the problem might be?
from django.contrib.gis.db import models
# Create your models here.
class Bus(models.Model):
busID = models.IntegerField(primary_key=True)
route = models.CharField(max_length=20)
operator = models.SmallIntegerField()
latitude = models.DecimalField( max_digits=8, decimal_places=6)
longitude = models.DecimalField( max_digits=8, decimal_places=6)
location = models.PointField(srid=4326, blank=True, null=True)
updated = models.DateTimeField(blank=True, null=True)
lastStop = models.IntegerField(blank=True, null=True)
def __str__(self):
return self.busID
settings.py:
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.spatialite',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
Error:
python3 ./manage.py migrate
Operations to perform:
Apply all migrations: admin, api, auth, contenttypes, sessions
Running migrations:
Applying admin.0002_logentry_remove_auto_add...Traceback (most recent call last):
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/utils.py", line 89, in _execute
return self.cursor.execute(sql, params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/sqlite3/base.py", line 357, in execute
return Database.Cursor.execute(self, query, params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
sqlite3.OperationalError: error in trigger ISO_metadata_reference_row_id_value_insert: no such column: rowid
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/Users/vvv/Documents/Prosjekter/mqtt/./manage.py", line 22, in <module>
main()
File "/Users/vvv/Documents/Prosjekter/mqtt/./manage.py", line 18, in main
execute_from_command_line(sys.argv)
File "/opt/homebrew/lib/python3.11/site-packages/django/core/management/__init__.py", line 446, in execute_from_command_line
utility.execute()
File "/opt/homebrew/lib/python3.11/site-packages/django/core/management/__init__.py", line 440, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/opt/homebrew/lib/python3.11/site-packages/django/core/management/base.py", line 402, in run_from_argv
self.execute(*args, **cmd_options)
File "/opt/homebrew/lib/python3.11/site-packages/django/core/management/base.py", line 448, in execute
output = self.handle(*args, **options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/core/management/base.py", line 96, in wrapped
res = handle_func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/core/management/commands/migrate.py", line 349, in handle
post_migrate_state = executor.migrate(
^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/migrations/executor.py", line 135, in migrate
state = self._migrate_all_forwards(
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/migrations/executor.py", line 167, in _migrate_all_forwards
state = self.apply_migration(
^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/migrations/executor.py", line 252, in apply_migration
state = migration.apply(state, schema_editor)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/migrations/migration.py", line 130, in apply
operation.database_forwards(
File "/opt/homebrew/lib/python3.11/site-packages/django/db/migrations/operations/fields.py", line 235, in database_forwards
schema_editor.alter_field(from_model, from_field, to_field)
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/sqlite3/schema.py", line 173, in alter_field
super().alter_field(model, old_field, new_field, strict=strict)
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/base/schema.py", line 788, in alter_field
self._alter_field(
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/sqlite3/schema.py", line 460, in _alter_field
self._remake_table(model, alter_field=(old_field, new_field))
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/sqlite3/schema.py", line 347, in _remake_table
self.alter_db_table(
File "/opt/homebrew/lib/python3.11/site-packages/django/contrib/gis/db/backends/spatialite/schema.py", line 153, in alter_db_table
super().alter_db_table(model, old_db_table, new_db_table, disable_constraints)
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/sqlite3/schema.py", line 120, in alter_db_table
super().alter_db_table(model, old_db_table, new_db_table)
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/base/schema.py", line 606, in alter_db_table
self.execute(
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/base/schema.py", line 199, in execute
cursor.execute(sql, params)
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/utils.py", line 102, in execute
return super().execute(sql, params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/utils.py", line 67, in execute
return self._execute_with_wrappers(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/utils.py", line 80, in _execute_with_wrappers
return executor(sql, params, many, context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/utils.py", line 84, in _execute
with self.db.wrap_database_errors:
File "/opt/homebrew/lib/python3.11/site-packages/django/db/utils.py", line 91, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/utils.py", line 89, in _execute
return self.cursor.execute(sql, params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/django/db/backends/sqlite3/base.py", line 357, in execute
return Database.Cursor.execute(self, query, params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
django.db.utils.OperationalError: error in trigger ISO_metadata_reference_row_id_value_insert: no such column: rowid
I have tried deleting old migrations, updating to the newest versions of Spatialite-tools. If I delete all the fields in my model, I still get the error.
答案1
得分: 5
最近,在使用 Django SQLite 数据库时,我遇到了 "django.db.utils.OperationalError: no such column: rowid" 错误。
经过一些研究,我在这里找到了一个有用的解决方案(https://code.djangoproject.com/ticket/32935)
在迁移和执行 migrate 之前,请运行以下命令:
python ./manage.py shell -c "import django;django.db.connection.cursor().execute('SELECT InitSpatialMetaData(1);')";
我希望这个解决方案有效。
英文:
Recently, while working with a Django SQLite database, I encountered the "django.db.utils.OperationalError: no such column: rowid" error
After some research, I found a helpful solution here (https://code.djangoproject.com/ticket/32935)
before migrations and migrate,run the following:
python ./manage.py shell -c "import django;django.db.connection.cursor().execute('SELECT InitSpatialMetaData(1);')";
I hope this solution works.
答案2
得分: 1
Hello i had the same problem soon.
The solution to me was to change two line in the two triggers
named ISO_metadata_reference_row_id_value_update
and ISO_metadata_reference_row_id_value_insert
AND NOT EXISTS
(SELECT eval('SELECT rowid FROM ' || NEW.table_name ||
' WHERE rowid = ' || NEW.row_id_value));
the lines were second and third line from bottom to top.
If you want more information for the problem, read next article:
https://groups.google.com/g/spatialite-users/c/SnNZt4AGm_o
英文:
Hello i had the same problem soon.
The solution to me was to change two line in the two triggers
named ISO_metadata_reference_row_id_value_update
and ISO_metadata_reference_row_id_value_insert
AND NOT EXISTS
(SELECT eval('SELECT rowid FROM ' || NEW.table_name ||
' WHERE rowid = ' || NEW.row_id_value));
the lines were second and third line from bottom to top.
If you want more information for the problem, read next article:
https://groups.google.com/g/spatialite-users/c/SnNZt4AGm_o
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论