Deprecated.
NAME
Neo4j::Driver::StatementResult - DEPRECATED (renamed to Neo4j::Driver::Result)
VERSION
version 0.49
SYNOPSIS
package Neo4j::Driver::Result;
use parent 'Neo4j::Driver::StatementResult';
DESCRIPTION
The Neo4j::Driver::StatementResult module was renamed to Neo4j::Driver::Result for version 0.19.
While the StatementResult module was part of the public API, that module name was used only internally in the driver. Objects were created by calling methods on session or transaction objects; a new()
method was never publicly exposed for this module. Therefore no issues due to this change are expected.
However, it is legal for clients to verify the type of result objects using isa(). To keep such existing checks working for the time being, a module with this name continues to be provided for use as a parent for Neo4j::Driver::Result.
Any use of Neo4j::Driver::StatementResult
is deprecated.
This module will be removed in a future version of this driver.
SEE ALSO
Naming changes for the Neo4j Java driver 4.0: neo4j/neo4j-java-driver#651
AUTHOR
Arne Johannessen (AJNN)
COPYRIGHT AND LICENSE
This software is Copyright (c) 2016-2024 by Arne Johannessen.
This is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0 or (at your option) the same terms as the Perl 5 programming language system itself.