• neomodel 访问 neo4j 最后出现的错误


    Exception TypeError: "'NoneType' object is not callable" in <bound method Connection.__del__ of <neo4j.bolt.connection.Connection object at 0x7fd4c7420110>> ignored
    Exception TypeError: TypeError("'NoneType' object is not callable",) in <bound method DirectDriver.__del__ of <neo4j.v1.direct.DirectDriver object at 0x7fd4c7410dd0>> ignored
    Exception TypeError: "'NoneType' object is not callable" in <bound method Connection.__del__ of <neo4j.bolt.connection.Connection object at 0x7fd4c7410f50>> ignored

    应用场景是构造自己的查询语句:

    from neomodel import db

        # query = 'MATCH (a:Source{name: {n0}}) RETURN a.name, a.titleid'
        # results, columns = db.cypher_query(query, {'n0': '干旱'})
        #
        # for row in results:
        #     print str(row[0]), str(row[1])
        #
        # db.driver.close()

    解决办法: db.driver.close(),当然在什么地方增加也是有说的,如果是循环中加入会报如下错误:

    Traceback (most recent call last):
      File "/home/py/PycharmProjects/ThirdTest/questionanswer/neo4joperate.py", line 153, in <module>
        get_question_id(query, params_json_string)
      File "/home/py/PycharmProjects/ThirdTest/questionanswer/neo4joperate.py", line 127, in get_question_id
        results, columns = db.cypher_query(query_string, params_json_string)
      File "/usr/local/lib/python2.7/dist-packages/neomodel/util.py", line 28, in wrapper
        return func(self, *args, **kwargs)
      File "/usr/local/lib/python2.7/dist-packages/neomodel/util.py", line 95, in cypher_query
        session = self.driver.session()
      File "/usr/local/lib/python2.7/dist-packages/neo4j/v1/direct.py", line 67, in session
        return BoltSession(self._pool.acquire, self._max_retry_time, access_mode=access_mode, bookmark=bookmark)
    AttributeError: 'NoneType' object has no attribute 'acquire'

    所以不能放在循环中。

  • 相关阅读:
    Spring(4)——面向切面编程(AOP模块)
    Spring(3)——装配 Spring Bean 详解
    Spring(2)——Spring IoC 详解
    Spring学习(1)——快速入门
    彼得原理(The Peter Principle)
    默菲定律 [Murphy's Law]
    EXTJS 表单提交
    在java 中,数组与 List<T> 类型的相互转换
    Eclipse 工作目录被破坏,导致Eclipse 打不开
    EXTJS 密码确认与验证
  • 原文地址:https://www.cnblogs.com/herosoft/p/7905147.html
Copyright © 2020-2023  润新知