📅  最后修改于: 2023-12-03 15:03:25.484000             🧑  作者: Mango
OrientDB 是一个高性能、分布式的多模型图形数据库,支持图形、文档、键值和反向图模型。本文将介绍如何在 OrientDB 中创建数据库。
在创建 OrientDB 数据库之前,你需要:
OrientDB 中可以使用控制台或 API 创建数据库。无论是控制台还是 API,都需要指定数据库名称和类型。
./<orientdb_install_dir>/bin/console.sh
(Linux/MacOS)或 .\<orientdb_install_dir>\bin\console.bat
(Windows)。create database <database_name> <database_type>
注意:在 <database_type>
中指定数据库类型。例如,如果要创建一个图形数据库,则将 <database_type>
设置为 graph
。
以下是使用 Java API 在 OrientDB 中创建数据库的示例:
OrientDB orientDB = new OrientDB("remote:<server_ip_address>:<server_port_number>", OrientDBConfig.defaultConfig());
orientDB.create("<database_name>", ODatabaseType.<database_type>);
注意:在 <database_type>
中指定数据库类型。例如,如果要创建一个文档数据库,则将 <database_type>
设置为 document
。
本文介绍了 OrientDB 中创建数据库的两种方法:使用控制台和使用 API。掌握这些方法可以帮助你更有效地使用 OrientDB。