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,33 @@
# cypher-shell
> 打开一个交互式会话并针对Neo4j实例运行Cypher查询。
> 另见:`neo4j-admin``mysql`。
> 更多信息:<https://neo4j.com/docs/operations-manual/current/tools/cypher-shell/>.
- 连接到本地实例,使用默认端口(`neo4j://localhost:7687`
`cypher-shell`
- 连接到远程实例:
`cypher-shell --address neo4j://{{host}}:{{port}}`
- 连接并提供安全凭证:
`cypher-shell --username {{username}} --password {{password}}`
- 连接到特定数据库:
`cypher-shell --database {{database_name}}`
- 在文件中执行Cypher语句并关闭
`cypher-shell --file {{path/to/file.cypher}}`
- 启用日志记录到文件:
`cypher-shell --log {{path/to/file.log}}`
- 显示帮助信息:
`cypher-shell --help`