bind variables and constraint functions
bwallis42 Jan 7, 2013 6:57 PMshould this work?
{code}
Query query = queryManager.createQuery("SELECT d.* FROM [inf:document] AS d WHERE ISDESCENDANTNODE(d, $path) LIMIT 1", Query.JCR_SQL2);
query.bindValue("path", vf.createValue("/ns:123456");
{code}
I get a parse error for the SQL
{code}
au.com.infomedix.cpf4.cu.exceptions.Cpf4Exception: Unexpected JCR repository error
at au.com.infomedix.cpf4.ds.PatientRecordOperations.deletePatient(PatientRecordOperations.java:510)
at au.com.infomedix.cpf4.ds.PatientRecordOperationsTest.testDeletePatient(PatientRecordOperationsTest.java:374)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:30)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.mockito.internal.runners.JUnit45AndHigherRunnerImpl.run(JUnit45AndHigherRunnerImpl.java:37)
at org.mockito.runners.MockitoJUnitRunner.run(MockitoJUnitRunner.java:62)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: javax.jcr.query.InvalidQueryException: The JCR-SQL2 query "SELECT d.* FROM [inf:document] AS d WHERE ISDESCENDANTNODE(d, $path) LIMIT 1" is not well-formed: Expecting ')' but found 'path' at line 1, column 64: SDESCENDANTNODE(d, $ ===>> path) LIMIT 1
at org.modeshape.jcr.JcrQueryManager.createQuery(JcrQueryManager.java:149)
at org.modeshape.jcr.JcrQueryManager.createQuery(JcrQueryManager.java:104)
at au.com.infomedix.cpf4.ds.PatientRecordOperations.deletePatient(PatientRecordOperations.java:489)
... 29 more
{code}
If I hardcode the path into the isdescendant() constraint then the query works as expected.