我已经阅读了ODB手册ch。 13现在我尝试迁移我的数据库版本。 我使用了第13.2章末尾的样本:
schema_version v (db.schema_version ());
schema_version bv (schema_catalog::base_version (db));
schema_version cv (schema_catalog::current_version (db));
if (v == 0)
{
// No schema in the database. Create the schema and
// initialize the database.
//
transaction t (db.begin ());
schema_catalog::create_schema (db);
// Populate the database with initial data, if any.
t.commit ();
}
else if (v < cv)
{
// Old schema (and data) in the database, migrate them.
//
if (v < bv)
{
// Error: migration from this version is no longer supported.
}
for (v = schema_catalog::next_version (db, v);
v <= cv;
v = schema_catalog::next_version (db, v))
{
transaction t (db.begin ());
schema_catalog::migrate_schema_pre (db, v);
// Data migration goes here.
schema_catalog::migrate_schema_post (db, v);
t.commit ();
}
}
else if (v > cv)
{
// Error: old application trying to access new database.
}
但是在数据库上运行此代码后(它工作正常且函数调用正确),数据库中没有新添加的表(类)。我已将版本符号添加到新类中:
#pragma db model version(2, 2, open)
在旧版本(第一版本方案)中,类具有这样的符号:
#pragma db model version(1, 1, closed)
为什么migrate_schema没有为新类创建表格的问题? (如果我删除数据库,上面的代码从头开始成功创建数据库)?