我使用 RSQLite 包将几个 .txt 文件转储到计算机硬盘上的 SQLite 数据库中。由于 .txt 文件没有标题,我必须使用“header = FALSE”参数。这是我的代码的外观:
for (i in (1:8)) {
dbWriteTable(conn = db, name = tbls[i], value = paths[i],
row.names = FALSE, header = FALSE, sep = "\t",
overwrite = TRUE)
}
现在我想在 SQLite 数据库中的表中添加列名,我该怎么做?