如何动态地向数据库表添加列?

时间:2019-12-02 06:12:15

标签: database sqlite

最初,我创建表“ demo”,该表具有两个字段“ name”和“ age”。

ld: library not found for -lbitcoin

稍后,我想在表的末尾动态添加列。    如:

rc = sqlite3_exec(db, "create table demo (name text, age integer);", NULL, NULL, &zErrMsg);

if (rc != SQLITE_OK)
{
   printf("Error: %s:Unable to create the table\n", zErrMsg);
}

是否有任何API可动态添加列。

0 个答案:

没有答案