Toggle navigation
Home
java.util.List<com.orientechnologies.orient.core.record.impl.ODocument> to com.orientechnologies.orient.core.sql.executor.OResultSet
No. of Instances - 10
No. of Commits - 7
No. of Projects - {'orientdb'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Add or Remove Method invocation
db.command(new OCommandSQL(sqlQuery)).execute()
to
db.query("MATCH {class: Customers, as: customer}-HasProfile->{class: Profiles, as: profile} RETURN customer")
db.command(new OCommandSQL(sqlQuery)).execute()
to
db.query("MATCH {class: Orders, as: order}-HasCustomer->{class: Customers, as:customer} RETURN order")
result.get(0).field("size")
to
result.next().getProperty("size")
db.query(new OSQLSynchQuery<ODocument>("select from cdr WHERE filename LUCENE ' \"MDCA20MCR201612291911.277904.eno.RRC.20161229193002.PROD_R4.eno.data\" '"))
to
db.query("select from cdr WHERE filename LUCENE ' \"MDCA20MCR201612291911.277904.eno.RRC.20161229193002.PROD_R4.eno.data\" '")
db.query(new OSQLSynchQuery<ODocument>("select from cdr WHERE filename LUCENE ' MDCA* '"))
to
db.query("select from cdr WHERE filename LUCENE ' MDCA* '")
Rename Variable
qResult
to
resultSet
qResult
to
resultSet