Click here to Skip to main content
15,887,376 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I have a store procedure with join

SQL
create procedure 'getData'()
begin
select tableA.id, tableA.name, tableB.description from tableA
join tableB on tableB.id = tableA.id 
where tableA.id like"%";
end


are there program that will tell me, how to make the hbm file and class files with this example?


Thank You for advance
Posted
Updated 2-Nov-11 5:59am
v2
Comments
Rob Philpott 2-Nov-11 13:30pm    
That where clause doesn't do anything...

1 solution

Maybe this[^]?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900