美文网首页
OrientDB的安装及基本操作

OrientDB的安装及基本操作

作者: Cracks_Yi | 来源:发表于2017-11-15 19:27 被阅读0次

    1.安装
    https://www.w3cschool.cn/orientdb/orientdb_installation.html 已经翻译了详细的安装配置教程,其中 步骤3 - 配置OrientDB服务器作为服务 可以不用管。

    %ORIENTDB_HOME%目录下有如下几个文件:


    bin目录下启动console.bat可以输入指令操作数据库。bin目录下只有启动了server.bat打开服务器,才可以CONNECT remote:...或者网页上http://localhost:2480登录。databases目录是存放数据库的默认地址,如CREATE DATABASE remote:localhost/[db_name] [username] [password] PLOCAL,db_name这个数据库就存放在databases目录下。config下是一些配置文件。

    基本操作W3C里已经说得比较详细了,唯一比较坑的是Java接口部分,给的是相对旧的下载内容和错误的代码。另外要注意的是下载的jar包版本要与OrientDB版本对应,否则各种连不上。

    2.Java接口
    给几段基本的OrientDB连接和操作代码。

    连接OrientDB:(在此之前你要在localhost建一个数据库叫mydb)

    OrientJdbcConnection conn;
    Class.forName(OrientJdbcDriver.class.getName()).newInstance(); 
    conn = (OrientJdbcConnection)DriverManager.getConnection("jdbc:orient:remote:localhost/mydb", username,password);
    

    写SQL语句并返回查询结果:(在此之前你要在mydb里建一个class叫Customer,两个Property分别叫name,age)

    Statement stmt = conn.createStatement(); 
    ResultSet rs = stmt.executeQuery("INSERT INTO Customer(name,age) values(10,22)");
    

    相关文章

      网友评论

          本文标题:OrientDB的安装及基本操作

          本文链接:https://www.haomeiwen.com/subject/tktqvxtx.html