Reputation: 924
I'm using the ORecordBytes to store binaries and like to list them all but the command select * from ORecordBytes is not recognised.
Upvotes: 0
Views: 81
Reputation: 924
You can select all ORecordBytes stored in OrientDB using the SQL command :
select * from cluster:default
Upvotes: 2
Reputation: 2632
As you can see I have a class with binary data:
To see them you can do a select of the cluster in which they are stored, in this case it's select from cluster:3
This is the result:
Hope it helps
Upvotes: 1