当前位置:  开发笔记 > 编程语言 > 正文

如何在PHP页面上从orientdb访问数据?

如何解决《如何在PHP页面上从orientdb访问数据?》经验,为你挑选了1个好方法。

我已经从https://github.com/orientechnologies/PhpOrient安装了OrientDb PHP官方驱动程序.

现在,在PHP页面中,我只希望它使用print_r()函数仅显示'user'集合的属性值,例如user_id,username,email_id,mobile等.

 $client = new PhpOrient( 'localhost', 2424);
 $client->username = 'root';

显示输出的代码如下::

$client->password = 'root';
$client->connect(); 
$ClusterMap = $client->dbOpen( 'krshop', 'root', 'root' ); 
$data = $client->query( 'select from user limit 10' ); 
echo "
";print_r($data);

使用orientdb的php的用户集合数据



1> 小智..:

试试这段代码:

$client = new OrientDB('localhost', 2424);
$client->connect('root', 'root');
$client->DBOpen('krshop', 'root', 'root');
$data = $client->select('select from user limit 10');

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有