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

    %% Retrieve Property Keys 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 property keys using the Neo4j(R) database connection
% |neo4jconn|.

propkeys = propertyKeys(neo4jconn)

%%
% The cell array |propkeys| contains a character vector for the one
% property key in the Neo4j(R) database.