--
---
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 orient-databa...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Have you tried to set the collate "CI" against the indexed field?
--
---
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 orient-databa...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
create index myidx ON Agent (label) FULLTEXTOrientGraphNoTx _g = new OrientGraphFactory("remote:localhost/graph").getNoTx();
OrientVertexType vertexType = _g.createVertexType(
"Agent",
OrientVertexType.CLASS_NAME);
vertexType.createProperty("label", OType.STRING).setCollate("CI");SELECT FROM index:myidx where key = ?works if the label property has already been set to use CI collating, I did it in Java by doing something like this
Thanks, can I do it with a console command?
Hey Hung,
I'm using the latest as of now, 1.7-rc2.
Justin Harris | via Android
You received this message because you are subscribed to a topic in the Google Groups "OrientDB" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/orient-database/ZgGgeaRSMK8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to orient-databa...@googlegroups.com.