I meant to pull data out of db and generate a xml file for a given dtd or schema file.
Type: Posts; User: realdahan; Keyword(s):
I meant to pull data out of db and generate a xml file for a given dtd or schema file.
This is not relevant to Spring, but I'm not sure whereelse I could post. I have a common set of data, and a few different xml schemas. What is the best approach to generate different xml files based...
AttributeTO is a POJO, no mapping table. How do I define the mapping for this calss? If I can't define a mapping, can I express the query using HQL?
Thanks.
I defined a named query in my .bhm.xml file
<sql-query name="getFlexibleAttributes">
<return alias="attribute" class="com.xxx.app.dal.AttributeTO"/>
<![CDATA[SELECT fd.LABEL as...
I defined a named query in my .bhm.xml file
<sql-query name="getFlexibleAttributes">
<return alias="attribute" class="com.xxx.app.dal.AttributeTO"/>
<![CDATA[SELECT fd.LABEL as...
I need to do the follow query, I guess I can use mapping declaration or named query. Which way is better off? Is there performance difference?
SELECT...
I need to do the follow query, I guess I can use mapping declaration or named query. Which way is better off? Is there performance difference?
SELECT...
I need to have the following query in my app,
select * from
(select rownum rown,a.* from table_part_num a)
where rown between 5000 and 6000
Does spring/hibernate support it?
I'm still puzzled by Spring configuration for a ear file. Do I need an applicationContext.xml file? Seems like the only xml file I need is beanRefContext.xml. Correct. By the way, where do I put the...