add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,16 @@
# sqlite3
> SQLite 3的命令行界面这是一个自包含的基于文件的嵌入式SQL引擎。
> 更多信息:<https://sqlite.org>。
- 使用新数据库启动交互式命令行:
`sqlite3`
- 打开一个针对现有数据库的交互式命令行:
`sqlite3 {{path/to/database.sqlite3}}`
- 针对数据库执行SQL语句然后退出
`sqlite3 {{path/to/database.sqlite3}} '{{SELECT * FROM some_table;}}'`