Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Microservices Testing (Live Project)
this week in the
Spring
forum!
Dag Corell
Greenhorn
+ Follow
3
Posts
0
Threads
0
Cows
since Sep 19, 2006
Merit Badge info
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
Ranch Hand Scavenger Hunt
Number Posts (3/100)
Number Threads Started (0/100)
Number Cows Received (0/5)
Number Likes Received (0/10)
Number Likes Granted (0/20)
Set bumper stickers in profile (0/3)
Report a post to the moderators (0/1)
Edit a wiki page (0/1)
Create a post with an image (0/2)
Greenhorn Scavenger Hunt
First Post
Number Posts (3/10)
Number Threads Started (0/10)
Number Likes Received (0/3)
Number Likes Granted (0/3)
Set bumper stickers in profile (0/1)
Set signature in profile
Search for a post/thread (0/3)
Set a watch on a thread
Save thread as a bookmark
Create a post with an image (0/1)
Recent posts by Dag Corell
mysql query to check the date
http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_datediff
show more
14 years ago
JDBC and Relational Databases
How does servlet container creates an HttpServletRequest object ?
Take a look at HttpServletRequestWrapper and HttpServletResponseWrapper.
Might be what your looking for...
show more
15 years ago
Web Component Certification (OCEJWCD)
How to find null (ResultSet + PreparedStatement))
The first call to matrixResultSet.next() would return false.
Code something like this..
if(!matrixResultSet.next()){ menuString.append(","); } else { do { String parentModuleName = matrixResultSet.getString("MOD_CODE"); logger.debug("this.renderURL"+this.renderURL); menuString.append("[null,'Home','"+this.renderURL+"/index.jsp',null,null,"); logger.debug(parentModuleName); this.makeMenu(parentModuleName, appCode, userId, con); menuString.append("] "); } while (matrixResultSet.next()); }
show more
15 years ago
JDBC and Relational Databases