[java ee programming] Question about finishing the J2EE Basic Course.

2009-11-23 Thread Susan Smith
Hello, I apologize if this question has been asked earlier. I just want to make sure I'm on the right track: If I finish the homework for J2EE Basic courses (total 13 HW), is there any next step to get the certificate? I also notice this mailing list has discussion about the J2EE Advanced. Jus

Re: [java ee programming] Error running web application on server - Setting Claspath for glassfish

2009-11-23 Thread bambang teleinfocom
Hi Chetana : Where do you put your .properties file ? sincerely bambang "Java Samurai with Passion!" On Mon, Nov 23, 2009 at 2:12 PM, Chetana Shenoy wrote: > Hello: >I was trying to run a web application viz Lottery Annotation. I got the > following error: > > The following error occurre

Re: [java ee programming] Trying to store a char in a string

2009-11-23 Thread Victor Lutin
Hello There! my two cents. [?] char a ='B'; while(a < 'Z') { a++; // Most be here, otherwise u will get an infinity loop :P ... mPanel.add(new Button(*Character.toString(a)*); } by the way, I advise you to use JButton (from Swing API) instead Button (AWT). On Mon, Nov 23, 2009 at 2:

RE: [java ee programming] Trying to store a char in a string [SEC=UNCLASSIFIED]

2009-11-23 Thread Durkin, Brendan MR
UNCLASSIFIED As always there are many ways to skin a cat... char a = 'a'; String s1 = String.valueOf(a); String s2 = new Character(a).toString(); String s3 = "" + a; System.out.println("'"+s1+"' = '"+s2+ "' = '"+s3

Re: [java ee programming] Trying to store a char in a string

2009-11-23 Thread Karl
char a; a = 'B'; a++; while (a < 'z') { mPanel.add( new Button("" + a) ); } --- On Sun, 11/22/09, tedpottel wrote: > From: tedpottel > Subject: [java ee programming] Trying to store a char in a string > To: "Java EE (J2EE) Programming with P

RE: [java ee programming] J2ee lab 1020

2009-11-23 Thread Moria Shebsovich
Hi Fernando, You probably should add a new .java file JDBCSamples-->Source packages-->New-->MyOwnJDBCProgram.java; inside it you will create both tables (CD and Location) and insert rows into them. Regards, Moria. From: fernando pardo [mailt

[java ee programming] Hibernate plugin - please help

2009-11-23 Thread Rafał Laczek
Hi, In my NB 6.7.1 I want to add Hibernate plugin. Unfortunately in " Available plugins" I can't find Hibernate. Can you help me please. Best regards, Rafal Laczek I love you "2012" Kocham takie filmy:) http://klik.wp.pl/?adr=http%3A%2F%2Fcor

[java ee programming] PD: Hibernate plugin - please help

2009-11-23 Thread Rafał Laczek
Hi, The problem is solved. BR Rafal Dnia 23-11-2009 o godz. 15:44 Rafał Laczek napisał(a): > Hi, > > In my NB 6.7.1 I want to add Hibernate plugin. Unfortunately in " > Available plugins" I can't find Hibernate. > Can you help me please. > > Best regards, > Rafal Laczek > > -

[java ee programming] unsubscribe

2009-11-23 Thread Jofirisi Dominic
Please delete me from your mailing list. I will rejoin in due course. This mail address is my work email as has limitations now on size. Thank you all Dominic jofirisi ***

[java ee programming] Lab_1020

2009-11-23 Thread fernando pardo
Hello all,: How can i do to create the file MyOwnJDBCProgram.java? I created the file location.java with the following path: JDBCSamples-->Source packages-->New -->JavaMainClasses(is this rigth??) thanks -- You received this message because you are subscribed to the Googl

Re: [java ee programming] anyone help me lab1020

2009-11-23 Thread Mihai DINCA
Hi In the original code, there must not be a comma "," between "LOCATION_ID" and "int". I.e. must write: "... LOCATION_ID int NOT NULL ..." and not: "... LOCATION_ID/*,*/ int NOT NULL ..." Otherwise, I think the declaration of the constraint on the "LOCATION_ID" line must work, even if I like

Re: [java ee programming] Trying to store a char in a string

2009-11-23 Thread Thiago Santana
Hello mate, Here it goes. char a = 't'; String charStr = new String(String.valueOf(a)); or simply: String charStr = String.valueOf(a); Hope that helps. Regards, TS 2009/11/22 tedpottel > Hi, > I'm trying to creat a row of buttons with the letters a to z in them, > hear is my code >