码迷,mamicode.com
首页 > 数据库 > 详细

java连接neo4j之jdbc

时间:2015-01-18 17:03:26      阅读:992      评论:0      收藏:0      [点我收藏+]

标签:

neo4j连接java目前主要有嵌入式、jdbc和rest api。

jdbc:需要使用到的lib包:neo4j-jdbc-2.0.1-SNAPSHOT-jar-with-dependencies.jar

Connection con = DriverManager
                .getConnection("jdbc:neo4j://localhost:7474/");  //创建连接

        String query = "start n = node({1}) return n.name";

        PreparedStatement stmt = null;       //采用预编译,和关系数据库不一样的是,参数需要使用{1},{2},而不是?
        ResultSet rs = null;
        try {
            stmt = con.prepareStatement(query);
            stmt.setInt(1, 14);
            rs = stmt.executeQuery();
            System.out.println(rs.getRow());
            while (rs.next()) {
                System.out.println("a " + rs.getString("n.name"));
            }
        } catch (Exception e) {
            throw e;
        } finally {
            if (null != rs) {
                rs.close();
            }
            if (null != stmt) {
                stmt.close();
            }
        }

jdbc连接的是服务式neo4j。

目前cypher语言提供的shorestPath方法仅仅支持计算两个节点间经过的节点数最小的路径,不支持关系之间的权重计算,如果需要计算权重的最短路径,则需要使用内嵌式,或者是服务式的rest API。

java连接neo4j之jdbc

标签:

原文地址:http://www.cnblogs.com/visoncheng/p/4138749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!