syntax « Component « JPA Q&A





1. ColdFusion9 and scripted components and hql syntax    stackoverflow.com

How can this be rewritten using the new scripting syntax along with the hibernate query language in CF9?

<cfcomponent output="no">
<cffunction name="Login" output="no">
    <cfargument name="UsrName">
    <cfargument name="UsrPassword">

 ...

2. Syntax for querying into dynamic components?    forum.hibernate.org

Hello, I have designed an extensible object model which uses the mapping to map user defined extensible properties to object. Unfortunately, there is not much documentation on this. I have the mapping working, but now need to know what the correct HQL syntax is to query into these mapped properties. Is is something like dynamicComponent["propertyName"]? Does hibernate even allow querying ...

3. HQL Update Syntax For Components    forum.hibernate.org

We are running into a problem with a relatively simple use-case. Let's say that we have a class called Parent that defines a property called 'component' to reference a 'Component' class. It is mapped in hibernate using the '' element. How can one write an HQL batch update that will work against the properties contained in the component? I've tried the ...