• 周二. 6月 17th, 2025

sqlite quit exit 如何退出

关键词:sqlite3 退出 , sqlite3 quit , sqlite3 exit , sqlite 退出, sqlite quit, sqlite exit. 

sqlite 如何退出

命令行:两种,
sqlite3 test.db
1: .quit
2: .exit

运行结果:

第一种:

local host # sqlite3
SQLite version 3.8.6.1 2015-05-21 17:24:32
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> .quit
local host #

第二种:

local host # sqlite3
SQLite version 3.8.6.1 2015-05-21 17:24:32
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> .exit
local host #


发表评论

您的电子邮箱地址不会被公开。