ei, i need help po. kasi i'm very interested in recursions and i want to know kung meron kayong alam na website na tutorial na madaling intindihin. sobrang...
Kudos to JP for the great presentation! That's the first time we had a big attendance and of course lots of food (courtesy of Strat Point, kudos to you guys...
http://blogs.atlassian.com/rebelutionary/archives/000595.html 98% of developers: 1. Don't need JDBC and JMS in one transaction 2. Have never considered an...
Hi all, Cevera Technology Group is in need of JAVA DEVELOPERS...below are the qualifications JAVA DEVELOPER * Java, J2EE, WSAD/ Struts Framework * with at...
Ok, ok... we're relenting... Orange & Bronze Consulting, Inc. is now accepting applicants for software architects who will work for us part- time and offsite....
Thank you all. I wish I could have discussed more, but it would take at least a day to cover the other areas of Hibernate. Maybe the next time around I could...
In a nutshell, recursive functions in its simplest form looks like this: public void recursiveList() { recursiveList(); } which means that you call the...
// create an ejbSelectXXX method in entity bean class SELECT COUNT(pt.product_type) as pcount FROM product_table pt note: check the list of supported functions...
http://www.onjava.com/lpt/a/5996 http://www.jroller.com/page/habuma?entry=spring_vs_ejb3_article Albert Einstein once said, "Everything should be made as...
... Of course, in their 'simplest form' like that you'd get a stack overflow error... And, yes, a recursive algorithm can be rewritten iteratively (and I ...
with your example, this will only return a single numeric value... gusto ko sana ng collection ng counts per type. ________________________________ From:...
try this: SELECT pt.product_type || ',' || COUNT(pt.product_type) as pcount FROM product_table pt GROUP BY pt.product_type ... set the return type of...
... Dude, I attached a word doc about understanding and tracing recursion. This might help you think in recursion on solving problem. On some cases of problem...
... vice versa yes (think clasical lisp). it's the recursive code to iterative that i sometimes have problem with. some cases, you'd have to maintain your ...
Hello there... Recursion is a very interesting subject in computer science... in the simplest form, it is a method invocation that has a base case and a...
Hi, Is there a way I can send or post message to a topic in PL/SQL using OpenJMS as JMS provider. I tried to load the java class which sends the message but I...
Another approach is wrapping your JMS Topic/Queue as a Servlet/HTTP call and just use UTL_HTTP from PL/SQL to send your message. That way, you don't have to...
Yes, that would be my plan if this will not work. :) Thanks! ... call and just use UTL_HTTP from PL/SQL to send your message. That way, you don't have to deal...
anyone selling a test simulation software for scjp1.4 exam which can be downloaded from http://www.whizlabs.com/scjp/scjp-1.4-details.html I really want to...
Why not use Oracle's Advanced Queueing? I believe a JMS wrapper is also available. This feature may not be available if you're using XE though. HTH jeff -- ...
Can you guys give me some idea in making simple A.I application and we need to convert it into applet.. this is one of the final project in our shcool eheh...
hmmm, for me ang kailangan niyang malaman about recursion is: 1. the recursive part 2. the termination part and that's how simple it can get. - francis...