Conditional SQL in Java6206 (3/31/2010 11:27:21 PM) comp.lang.java.programmer I just looked at hibernate... but have never used it.
Can it or any other main stream java tools query databases with an
optional WHERE clause?
What I mean is I have a number of cases where people fill i... Ken
JSP variable scope issue2150 (12/9/2009 9:52:25 PM) comp.lang.java.programmer I have a page of the form:
== Start ==
== End ==
Now when I run the page the first time I get 0 then each subsequent
time a higher number... Why? I should think the scope of someVariable
is lo... Ken
jsp:getProperty question514 (10/28/2009 9:55:47 PM) comp.lang.java.programmer I am trying to follow a sun tutorial for creating custom tags. (The tutorial can be found here if needed: http://java.sun.com/products/jsp/tutorial/TagLibraries16.html ) The issue: The documentation here (http... Ken
Maintain DB connection530 (10/6/2009 12:04:24 AM) comp.lang.java.programmer Right now for testing I am opening up a DB connection and closing it for every query. This is because I was just doing quick testing. What I am going to do is make the connection a singleton, open the connecti... Ken
JSP Methods1822 (9/29/2009 5:24:54 PM) comp.lang.java.programmer Hello group, I'm new to JSP and was having trouble creating Methods in JSP to output html, I managed to solve it before posting. So I'll share my obtuseness and ask another question instead. Now I realize th... Ken
Netbeans: bottom scroll bar of jScrollPane not working329 (5/27/2009 9:47:30 PM) comp.lang.java.programmer I am not that savvy a Swing programmer... so I am using Netbeans to help make the GUI and since I am not used to it, it is giving me more headaches than help... I've got a jTable inside a jScrollPane and have ... Ken
Printing Labels / Envelopes and a question about IDL444 (4/14/2009 11:07:37 PM) comp.lang.java.programmer Here is what I am doing... I have pulled a bunch of address and customer information from a database and want to format the output such that it can be printed on labels and envelopes. Here is what I was think... Ken
JDBC connection Issues1447 (4/6/2009 10:24:59 PM) comp.lang.java.programmer I am looking for validation, I am very new to JDBC. However the issue could be with the server... In which case a recommendation to a more appropriate forum would be welcome. Anyways my first question is: Am ... Ken
Relax NG external reference question08 (1/26/2009 7:36:58 AM) comp.text.xml For illustration I have three documents 1) A document of definitions X THE LETTER X Y THE LETTER Y Z THE LETTER Z 2) An document that uses the ter... Ken
Wait for the result of a JDialog2199 (11/14/2006 1:19:34 AM) comp.lang.java.gui I have created a JDialog with three buttons: Yes, No, Cancel. I would like to do something like this in the main window: MyJDialog dialog = new MyJDialog(parent); int response = dialog.showOpenDialog(); //dis... Ken
JDBC connection Issues1447 (4/6/2009 10:24:59 PM) comp.lang.java.programmer I am looking for validation, I am very new to JDBC. However the issue could be with the server... In which case a recommendation to a more appropriate forum would be welcome. Anyways my first question is: Am ... ken473(54)
Servlet container/server for Linux4113 (9/2/2009 3:52:49 PM) comp.lang.java.programmer What's the simplest, most straightforward, servlet container for testing and developing servlets on Linux? I'd prefer one that doesn't require a lot of setup, and will run on older versions of Linux. ... rossclement(79)
Putting passwords in a properties file?5615 (9/25/2009 7:37:13 AM) comp.lang.java.programmer I need to put a password for something as an application parameter. For now I'm using a properties file but the password isn't encrypted. I suppose I could encrypt with something and hardcode that encryption ... genijalac(67)
JSP Methods1822 (9/29/2009 5:24:54 PM) comp.lang.java.programmer Hello group, I'm new to JSP and was having trouble creating Methods in JSP to output html, I managed to solve it before posting. So I'll share my obtuseness and ask another question instead. Now I realize th... ken473(54)
Download on windows then instal on Linux419 (10/5/2009 5:58:23 AM) comp.lang.java.programmer Dear gurus, I am trying to learn Java EE 5. First I would like to set up a Linux server (the server would be on LAN and not familiar with Linux), then instal GlassFish on it (never instal a software on Linu... ecp_gen(55)
jsp:getProperty question514 (10/28/2009 9:55:47 PM) comp.lang.java.programmer I am trying to follow a sun tutorial for creating custom tags. (The tutorial can be found here if needed: http://java.sun.com/products/jsp/tutorial/TagLibraries16.html ) The issue: The documentation here (http... ken473(54)
HashMap get/put7926 (10/28/2009 9:59:44 PM) comp.lang.java.programmer If I have the following: HashMap map = new HashMap(); MyKey myKey = new MyKey(); Then I can put in a value by: map.put(myKey, new MyValue() ); The compiler enforces the use of these two types. Howeve... Wojtek