如何在OrientDB中禁用自动类创建?我的意思是,假设我创造了这样的边缘:
sourceVertex.addEdge("PointsTo", targetVertex);
如果尚未存在,则OrientDB将创建一个类PointsTo
。是否可以将OrientDB配置为在给出不存在的类时抛出异常?
答案 0 :(得分:1)
对OrientDB数据库执行此SQL命令:
alter database custom useClassForEdgeLabel=false
有关详细信息,请查看OrientDB Documentation。