www.gusucode.com > database 案例源码程序 matlab代码 > database/RetrieveNodeLabelsInNeo4jDatabaseExample.m

    %% Retrieve Node Labels in Neo4j(R) Database
% Create a Neo4j(R) database connection using the URL
% |http://localhost:7474/db/data|, user name |neo4j|, and password |matlab|.
url = 'http://localhost:7474/db/data';
username = 'neo4j';
password = 'matlab';

neo4jconn = neo4j(url,username,password);

%%
% Check the |Message| property of the Neo4j(R) connection object
% |neo4jconn|.

neo4jconn.Message

%%
% The blank |Message| property indicates a successful connection. 

%%
% Retrieve all node labels using the Neo4j(R) database connection
% |neo4jconn|.

nlabels = nodeLabels(neo4jconn)

%%
% The cell array |nlabels| contains a character vector for the one node
% label in the Neo4j(R) database.