- fix: 修复关系的方向性问题,使 _srcId 与 _dstId 两个栏位的值符合方向性.
- fix: Fix the directionality problem of the relationship, so that the values of the two columns _srcId and _dstId conform to the directionality.
- chore: upgrade dependencies.
- fix: 修复 meta 名称为中文时,无法获取到数据的问题
fix: When the meta name is Chinese, the data cannot be obtained
- fix: when the data is not a standard utf8 string, an error occurs.
- fix: when the time zone of the database is set, fix the unit issue of offset (hours ->sec)
- fix: path data processing errors.
- Feat: Add timestamp type in dart_gdbc ( upgrade to v0.0.4 ).
- 修复:获取 Time 类型的值错误问题
- 修复:修复DateTime类型的毫秒时间差
- 修复:结果解析中,对 none 类型进行处理,并按 nVal 的值进行解析,给出对空值的解释,如:BAD_TYPE
- 新特性:支持获取执行计划
- 升级依赖库
- 修复:当出现未知类型时,返回null,原来是 Value()
- 连接未关闭的问题
- 支持连接池
- 升级依赖库,解决读写双向数据过小问题的bug
- 在 list 类型的结构下,确保多行公用 list 的 submetas,从而避免重复创建多余的 submeta,减少不必要的列。
- 支持在创建连接如指定了默认的space,则自动使用该space
- 适配dart_gdbc v0.0.1+3
- 修改了Statement的接口
- PreparedStatement支持gql参数渲染回调函数
stmt = await conn?.prepareStatement( 'MATCH (n:person) WHERE id(n) == '{name}' RETURN n LIMIT 30', render: (gql, param) => gql.replaceAll('{name}', param?['name']), // 可以自行指定顺手的字符串模板来替换 ); var rs = await stmt?.executeQuery(params: {'name': '张小南'}); rs = await stmt?.executeQuery(params: {'name': '吴小极'});
- 完善PreparedStatement的带参实现
- 拓展方法
- string.bytes 获取 Int8List
- string.utf8code 获取Utf8编码的Int8List
- int8List.utf8string 获取Utf8编码的String
- 提供nebulagraph的驱动