[orientdb] Waiting for orientdb-1.7

2014-05-01 Thread madhu
Hi Lvca, when can we expect the orientdb-1.7 to be released? Thanks, Madhu -- --- You received this message because you are subscribed to the Google Groups OrientDB group. To unsubscribe from this group and stop receiving emails from it, send an email to

[orientdb] Re: Corrupt database (invalid edges) when removing multiple edges

2014-05-01 Thread stefan
? On Wednesday, 30 April 2014 16:23:59 UTC, ste...@activitystream.com wrote: Hi, I'm running into this issue. What I do is: 1. Get the vertex 2. Iterate through outgoing edges and collect the edges I would like to delete 3. Remove edges - tried both:

[orientdb] how about 1.7rc3

2014-05-01 Thread Hristo Stoyanov
LucaCo have introduced some awesome new features since 1.7rc2. How about releasing 1.7rc3 as a next step, rather than 1.7 final? Thanks, Hristo -- --- You received this message because you are subscribed to the Google Groups OrientDB group. To unsubscribe from this group and stop receiving

Re: [orientdb] Multiple propertiy values for one property key

2014-05-01 Thread Marc Tigges
Ok and what if i want to add a property value to the collection of property values later? Btw: how can i get all property keys saved in a vertex? Am Montag, 28. April 2014 23:58:56 UTC+2 schrieb Riccardo Tasso: Yes it is. If you're talking of fields you should assign a collection as value:

Re: [orientdb] Tinkerpop Frames and transactions

2014-05-01 Thread Mike Roberts
No Luca, I use plocal. Then I also tried remote but the behaviour is the same. -- --- You received this message because you are subscribed to the Google Groups OrientDB group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [orientdb] Multiple propertiy values for one property key

2014-05-01 Thread Marc Tigges
Ok found both things out: Vertex vertex = ... SetString keys = vertex.getPropertyKeys(); ListString values = null; if(keys.contains(key)) { values = (ListString)vertex.getProperty(key); values.add(value); } else { values = new ArrayListString(); values.add(value); }

[orientdb] Re: how about 1.7rc3

2014-05-01 Thread Erik Peterson
Good suggestion...at least timing wise for us. Could also update blueprints dependencies off -snapshot. On Thursday, May 1, 2014 10:07:35 AM UTC-6, Hristo Stoyanov wrote: LucaCo have introduced some awesome new features since 1.7rc2. How about releasing 1.7rc3 as a next step, rather than 1.7

[orientdb] Graph schema with records and revisions

2014-05-01 Thread chrismichaels84
I am a newbie here, so maybe this is answered in the docs but I couldn't find it. I'm creating the schema for my first db. It's a CMS of sorts (for social science data analysis), and each item will have multiple revisions. What is the best way to connect these revisions? Only one revision will

[orientdb] Re: Import data from .csv using console

2014-05-01 Thread Minnow Noir
This functionality has not been added yet, has it? It's been almost two years, so I thought I would ask before writing some kind of shell script that can convert CSV files into SQL scripts. I searched the web site, Git wiki, and Google, and this post is about all I came up with. Thanks On

[orientdb] single GROUP BY ignores null values

2014-05-01 Thread Fabrizio Fortino
Hi there, I have a class that looks like this CODE,PRIORITY 0001,HIGH 0001,LOW 0001,LOW 0002,HIGH null,HIGH Executing the following query select CODE, count(*) as count group by (CODE) I get CODE,count 0001,3 0002,1 Executing a multi group by select select CODE, PRIORITY, count(*) as count

[orientdb] [Snapshot] Distributed config not being updated w/ new node name

2014-05-01 Thread Mateusz Dymczyk
In the newest snapshot when a node join the cluster the distributed configuration isn't being updated even if in the partitions lists we have the NEW_NODE entry. This leads to NPE in OHazelPlugin class when sending messages. id something change or is it a bug I should post on github? My

Re: [orientdb] Multiple propertiy values for one property key

2014-05-01 Thread Marc Tigges
Hello again, i figured out a new Problem for me so i just take my old post cause its kinda related to it. I have a vertex with a property. The java type of the property is ListString. I add properties to the list like that: logger.info(Set property: + id + : + key + : + value); Vertex vertex