我想删除这个名为temp的特定数据库,它是在ubuntu机器上使用SQLite创建的。如何删除此数据库?
答案 0 :(得分:1)
案件非常简单。
删除这样的文件:
rm -fr filename
或者在终端类型中:
$ sqlite3 tempfile (where tempfile is the name of the file)
sqlite> SELECT * FROM sqlite_master WHERE type='table';
您将看到这样的表列表作为示例:
table|friends|friends|2|CREATE TABLE friends (id int)
然后输入
sqlite> drop table friends (or the name you want to drop)
然后按ctrl-d退出。
就是这么简单
答案 1 :(得分:0)
粘贴stackoverflow链接供您参考。这可能很有用 how to drop database in sqlite?