我有一个使用数据库的Tcl程序:SQLite。
package require sqlite3
我可以像这样运行SQL查询:
sqlite3 brain "./brain/$id.sqlite" -create true
brain eval { create table if not exists main(time char, input char) }
#generic update
proc ::repo::update::onId {table column data id} {
brain eval "UPDATE '$table' SET '$column'='$data' WHERE rowid='$id'"
}
这对我很有帮助,但我认为现在对我的数据进行图形表示会很有用。
有谁知道如何使用Tcl与Neo4j数据库进行交互?
有人建议我自己创建驱动程序并指向我这些链接,但我不是程序员,所以我很难搞清楚我需要做什么。我愿意这样做,如果我能弄清楚如何,我以前从未做过类似的事情。
现有的tcl驱动程序?我不确定这是什么。 https://github.com/ekzemplaro/data_base_language/blob/master/neo4j/tcl/read/neo4j_read.tcl
API接口:http://neo4j.com/docs/developer-manual/3.1/http-api/#http-api-transactional
我会写一个发送这样的帖子消息的驱动程序吗?
{
"statements" : [ {
"statement" : "CREATE (n) RETURN n"
} ]
}
感谢您提供给我的任何帮助或建议!