最初,我创建表“ 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可动态添加列。