Skip to content
bonybeat edited this page Aug 15, 2014 · 12 revisions

*注意:OrientDB 2.0から、RDBMSからデータをimportするのに、OrientDB-ETL module が利用可能になります。

OrientDBには、ドキュメントモデルとグラフモデルがあります。以下のいずれかを参照して下さい。 ドキュメントモデルとグラフモデルそれぞれに固有の部分以外は同じ内容です。

<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> <script> $(function() { $("*").contents().filter(function() { return this.nodeType==8 && this.nodeValue.match(/^original/); }).each(function(i, e) { var tooltips = e.nodeValue.replace(/^original *[\n\r]|[\n\r]$/g, ''); $(this).prev().attr('title', tooltips); }); }); </script>
Clone this wiki locally