gpt4 book ai didi

grails - Neo4j:Groovy脚本未插入任何内容

转载 作者:行者123 更新时间:2023-12-02 14:29:39 24 4
gpt4 key购买 nike

我在嵌入式模式下使用neo4j。因此,对于服务器上数据库中的某些操作,我想执行groovy脚本。 Groovy脚本成功运行,没有任何错误,但是当我检查neo4j-communinty工具时,它没有创建任何新记录。

脚本

/**
* Created by prabjot on 7/1/17.
*/
@Grab(group="org.neo4j", module="neo4j-kernel", version="2.3.6")
@Grab(group="org.neo4j", module="neo4j-lucene-index", version="2.3.6")
@Grab(group='org.neo4j', module='neo4j-shell', version='2.3.6')
@Grab(group='org.neo4j', module='neo4j-cypher', version='2.3.6')
import org.neo4j.graphdb.factory.GraphDatabaseFactory
import org.neo4j.graphdb.Node
import org.neo4j.graphdb.Result
import org.neo4j.graphdb.Transaction
class Neo4jEmbeddedAccess {

public static void main(String[] args) {
def map=[:]
map.put("allow_store_upgrade","true")
map.put("remote_shell_enabled","true")
def db = new GraphDatabaseFactory().newEmbeddedDatabaseBuilder("/opt/neo4j-community-3.0.4/data/databases/graph.db")
.setConfig(map)
.newGraphDatabase()
Transaction tx =db.beginTx()
Node person = db.createNode();
person.setProperty("name","prabjot")
print("id---->" + person.id);
Result result = db.execute("Match (country:Country) where id(country)=73 SET country.modified=true return country")
print(result)
tx.success();

println """starting embedded graph db
use bin/neo4j-shell from a new distribution to connect
we're keeping the graphdb open for 120 secs"""
db.shutdown()
}

请帮助我在这里做错了,我已经检查了我的数据库位置,但与我在脚本和工具中使用的位置相同。

谢谢

最佳答案

您忘记了提交事务的tx.close()

成功只会将其标记为成功

关于grails - Neo4j:Groovy脚本未插入任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41519855/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com