codecamp

OrientDB导出记录

Export Record 是用于将加载的记录导出为请求和支持的格式的命令。 如果您执行任何错误的语法,它将给出支持的格式的列表。 OrientDB是一个Document数据库系列,因此JSON是默认支持的格式。
以下语句是“Export Record”命令的基本语法。

EXPORT RECORD <format> 

其中<Format>定义要获取记录的格式。
注意:导出命令将根据记录ID导出加载的记录。

让我们考虑我们在上一章中使用的相同的客户表。

编号名称年龄
1Satish25
2Krishna26
3Kiran29
4Javeed21
5Raja29

请尝试以下查询以检索记录标识为@rid:#11:0的记录。

orientdb {db = demo}> LOAD RECORD #11:0

如果上述查询成功执行,您将得到以下输出。

+---------------------------------------------------------------------------+ 
| Document - @class: Customer        @rid: #11:0           @version: 1      | 
+---------------------------------------------------------------------------+ 
|                     Name | Value                                          | 
+---------------------------------------------------------------------------+ 
|                       id | 1                                              | 
|                     name | satish                                         | 
|                      age | 25                                             | 
+---------------------------------------------------------------------------+ 

使用以下查询将加载的记录(#11:0)导出为JSON格式。

orientdb {db = demo}> EXPORT RECORD json 

如果上述查询成功执行,您将得到以下输出。

{ 
   "@type": "d", 
      "@rid": "#11:0", 
   "@version": 1, 
   "@class": "Customer", 
      "id": 1, 
      "name": "satish", 
      "age": 25 
}
OrientDB重载记录
OrientDB更新记录
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }