Re: JavaBeans Components vs. EJBs

2001-03-25 Thread T A Flores
Java Bean components tend to, but are not always, visual components. Whereas Enterprise Java Beans are stictly non-visual Server side components. There is a clear and distinct difference that has been heavily documented. - Original Message - From: Erwin [EMAIL PROTECTED] Date: Sunday,

Re: Problem in inserting data into Oracle

2001-03-21 Thread T A Flores
You need to append a second single quote - it's not an Oracle thing, but rather, a DB thing. Try the following - take note it will not matter where the single quote is it will append another to it. public String apQuote(String s ) { StringBuffer result = new StringBuffer(); for (int

Re: Problem in inserting data into Oracle

2001-03-21 Thread T A Flores
alternatives, in all but the most simple cases. Really and truly. From: T A Flores [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Problem in inserting data into Oracle Date: Wed, 21 Mar

Re: Beginner: Servlets

2001-03-06 Thread T A Flores
A very quick serch of java.sun.com/jdc would have yeilded the following results: http://developer.java.sun.com/developer/onlineTraining/index.html - Original Message - From: Sello Mathibe [EMAIL PROTECTED] Date: Monday, March 5, 2001 11:25 pm Subject: Beginner: Servlets Hi Folks, I

Re: java.sql question

2001-02-04 Thread T A Flores
No question is stupid if asked within the right context. I think the original point, before the pissing contest began, was how appropriate the question was for this list. Its not. This is the worst list for off-topic posting and every one knows it. It's not that some of us are "Know it alls"

Re: Error Accessing Connection pool

2001-01-31 Thread T A Flores
First of all why are you doing this in a JSP? Put it in a servlet or something. Also this has been discussed please see the archives. - Original Message - From: Yogeeta_Raghunathan [EMAIL PROTECTED] Date: Tuesday, January 30, 2001 11:09 pm Subject: Error Accessing Connection pool

Re: De-Tokenizing ?!

2001-01-26 Thread T A Flores
Why would you concatenate a bunch of strings? Why not improve your peformance and use a string buffer and use append? - Original Message - From: Peter Choe [EMAIL PROTECTED] Date: Friday, January 26, 2001 1:18 pm Subject: Re: De-Tokenizing ?! from what you describe, i would just

Re: Offtopic

2001-01-11 Thread T A Flores
Samba not sure of the URL - Original Message - From: Arun Prakash [EMAIL PROTECTED] Date: Wednesday, January 10, 2001 10:37 pm Subject: Offtopic Does anyone know a Tool that opens a Unix Files on Windows. I mean justa tool that can explore all the files of unix allow creating,

Re: caching the records

2001-01-11 Thread T A Flores
Go to the JDBC tutorial I believe chapter 5 on RowSet CachedRowSet and WebRowSet - Original Message - From: Surender Jain [EMAIL PROTECTED] Date: Thursday, January 11, 2001 2:44 am Subject: caching the records hi all well Steven i'm also facing the same kind of problem. i also need

Re: online book wanted

2001-01-11 Thread T A Flores
Manning publishing has a good JSP book available in electronic format - Original Message - From: kishore [EMAIL PROTECTED] Date: Thursday, January 11, 2001 3:56 am Subject: online book wanted hi, iam quite new to this technolgy. i am looking for online book over jsp and

Re: I am sorry.. for posting into this grrop.

2001-01-10 Thread T A Flores
Malla Reddy, Not only is this an inappropriate question for this and the Servlet list but it has been asked, answered, and reposted to the on the JSP list just with a different email address. At the risk of starting another flame fest on both the JSP and Servlet interest list over questions

Re: I must restart WLS5.1 everytimes I modify my bean?

2001-01-08 Thread T A Flores
In weblogic, they have command line utilities that will "hot" deploy a bean(don't forget to register in the properties file) and another utility that will un-deploy the bean. There is no need to start and stop your server every time you change the bean. The specifics can be found in there

Re: SQL command

2001-01-08 Thread T A Flores
Desc tableName - Original Message - From: Senaka Suriyaarachchi [EMAIL PROTECTED] Date: Monday, January 8, 2001 7:02 pm Subject: Re: SQL command Hi u can use select * from tab; - (In Oracle to find out table list) desc tablename - (In Oracle to find out columns in a particular

Re: custom tag libraries in JSP

2001-01-05 Thread T A Flores
There is a tutorial available on the Java.sun site. http://java.sun.com/products/jsp/tutorial/TagLibraries3.html - Original Message - From: Deepak Kumar [EMAIL PROTECTED] Date: Thursday, January 4, 2001 11:57 pm Subject: custom tag libraries in JSP Hi, Please tell me how to use

Re: Whats up with all these out of office replies??

2001-01-02 Thread T A Flores
And if that wasn't enough you have the S.L.U.Gs (selfish, lazy, useless, gobers)that want their knowledge spoon fed to them by those of us who have taken the time and effort(of course, not to forget the hair that we pulled out of ours heads) learning and perfecting our craft. - Original

Re: Help!!!!!!!!!!!

2000-12-27 Thread T A Flores
I don't necessarily agree with placing the images into the file system. The problem is that is these images are transactional there isn't a transaction manager, however, if not transactional file system is just fine. Choice is always yours. If you choose the Oracle database use a BLOB. -

Re: a little offtopic

2000-12-01 Thread T A Flores
That's all well and fine except for those of us who do not use nor have no interest in using Perl/CGI/JavaScript. In addition to, many of us are participants in numerous lists groups (yes, the Geek Factor)and may not want to develop an injury from deleting all the extraneous messages that have

Re: Jsp in WebLogic 5.1

2000-11-18 Thread T A Flores
First of all you may wish to use the Weblogic specific message board, however, I can say that you need to look at your properties file settings. - Original Message - From: Loni Bharat Nagwani [EMAIL PROTECTED] Date: Thursday, November 23, 2000 11:34 pm Subject: Jsp in WebLogic 5.1 Hi,

No Subject

2000-11-14 Thread T A Flores
You can try CachedRowSet or someother set. Look at the JDBC tutorial at the following link: http://developer.java.sun.com/developer/Books/JDBCTutorial/chapter5.html - Original Message - From: Steve Raisor [EMAIL PROTECTED] Date: Tuesday, November 14, 2000 11:52 am I have a couple

Re: resultset to jsp

2000-11-05 Thread T A Flores
it is about JBuilder --- T A Flores [EMAIL PROTECTED] wrote: Duncan, You're right if the result set object is not passed to a collection it will be lost when the stmt/connection is closed. I think enough of this thread since it was already sufficiently covered. I have for those who

Re: DB Bean

2000-11-04 Thread T A Flores
PROTECTED] wrote: can you send me example code? -Original Message- From: T A Flores [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 3:32 PM To: [EMAIL PROTECTED] Subject: Re: DB Bean More specifically, take your result set and place it in a collection

Re: resultset to jsp

2000-11-04 Thread T A Flores
pen. Can someone confirm whether this is true or not. thanks, ron --- T A Flores [EMAIL PROTECTED] wrote: If you use the tableor JTable how exactly are you getting the result set from the Servlet/Bean? - Original Message - From: Ron Chan [EMAIL PROTECTED] Date: Friday, Novem

Re: resultset to jsp

2000-11-03 Thread T A Flores
It is possible, however, why would you want to use and array why not use a vector of hashtables. I posted a response to a similiar problem using servlet to jsp last month (I believe more toward the middle of October). Why don't you search the archive and see if that helps you at all. -

Re: DB Bean

2000-11-03 Thread T A Flores
More specifically, take your result set and place it in a collection and pass the collection to the JSP. (Check the archive for exactly how) - Original Message - From: Tasneem [EMAIL PROTECTED] Date: Thursday, November 2, 2000 1:16 pm Subject: Re: DB Bean Yes i have but what exactly is

Re: DB Bean

2000-11-03 Thread T A Flores
to post the code you can take the time to get it for yourself (not to be rude or anything). - Original Message - From: Mutahar Qayum [EMAIL PROTECTED] Date: Friday, November 3, 2000 4:24 pm Subject: Re: DB Bean can you send me example code? -Original Message- From: T A Flores

Fwd: Re: Any one knows JMS users mailing lists..

2000-11-03 Thread T A Flores
- Original Message - From [EMAIL PROTECTED] Date Fri, 03 Nov 2000 14:14:49 -0800 To malla reddy choodi [EMAIL PROTECTED] Subject Re: Any one knows JMS users mailing lists.. If you go the hyperlink that I have included you will find a forum for just about everything. In future,

Re: jsp worth it for unknown form parameters?

2000-11-03 Thread T A Flores
I use collection to move the db Result Set from the database to a JSP and then enumerate through the collection. My move to JSP was very simple, I can't stand writing HTML or all those println's. See my 19- October post. This should work regardless if you are using a Bean or a Servlet.

Re: resultset to jsp

2000-11-03 Thread T A Flores
for transport. Whatever display, if AppleJTable, if html, can loop rows and columns into a table tag. etc. ron --- T A Flores [EMAIL PROTECTED] wrote: It is possible, however, why would you want to use and array why not use a vector of hashtables. I posted a response to a similiar problem

Re: SOCKET PROBLEME IN weblogic5.1

2000-11-02 Thread T A Flores
Have you downloaded the most current Service Pack? I believe that WLS 5.1 is on SP6. We had a similiar problem and were advise by BEA it was a known issue that was corrected in one of the SP's. - Original Message - From: Martin Nwalal [EMAIL PROTECTED] Date: Tuesday, October 31, 2000

Re: EJB mailing list (out of topic)

2000-11-01 Thread T A Flores
[EMAIL PROTECTED] - Original Message - From: Eric Owens [EMAIL PROTECTED] Date: Saturday, October 28, 2000 8:22 am Subject: Re: EJB mailing list (out of topic) I was looking for one as well. - Original Message - From: "Raj S" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: TO T A Flores

2000-10-26 Thread T A Flores
to the JSP. - Original Message - From: "Ganesh N.M" [EMAIL PROTECTED] Date: Thursday, October 26, 2000 3:15 pm Subject: TO T A Flores Flores, Can u just ell me how u r calling/using this code snippet in JSP. i.e getConnection() u used in the following? Please give me the f

Re: Exam Venues

2000-10-22 Thread T A Flores
Contact Sylvan Prometric @ New Zealand 080-044-1689 . . . its all available on the sun/java sites. - Original Message - From: Raj Jain [EMAIL PROTECTED] Date: Sunday, October 22, 2000 3:07 pm Subject: Exam Venues Please tell me how can I find out the list of venues for the Java

Re: Uploading file

2000-10-20 Thread T A Flores
You need to use the BLOB datatype for multimedia files and is supported very well by Oracle 8i. - Original Message - From: Cheong Takhoe [EMAIL PROTECTED] Date: Thursday, October 19, 2000 7:49 pm Subject: Uploading file Hi, I'm trying to achieve the method above with Oracle and it

Re: How risky it is to store passwords in a session variable

2000-10-20 Thread T A Flores
I am unclear as to why you want to store a password in session. Why don't you just pass around some type of validated indication and not the password. Such as login=true; - Original Message - From: Lorena Carlo [EMAIL PROTECTED] Date: Friday, October 20, 2000 12:12 pm Subject: How

Re: How risky it is to store passwords in a session variable

2000-10-20 Thread T A Flores
if this is dangerous. Thanks in advance Lorena - Original Message - From: T A Flores [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 20, 2000 3:01 PM Subject: Re: How risky it is to store passwords in a session variable I am unclear as to why you want to store a password

No Subject

2000-10-19 Thread T A Flores
I think if you were more specific about your exact problem you might get a little more assistance. At any rate, below are a couple of code snipets. I use a servlet to perform the query and pass the result set to a JSP. I think the following will at least give you a very good start. In the

No Subject

2000-10-19 Thread T A Flores
I think if you were more specific about your exact problem you might get a little more assistance. At any rate, below are a couple of code snipets. I use a servlet to perform the query and pass the result set to a JSP. I think the following will at least give you a very good start. In the

Sorry for the double posting

2000-10-19 Thread T A Flores
Sorry for the double posting. I was having trouble sending the message. -- TA Flores === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

Re: TO T A Flores

2000-10-19 Thread T A Flores
ough do we see too much processing in JSP's. - Original Message - From: marco [EMAIL PROTECTED] Date: Thursday, October 19, 2000 3:00 pm Subject: TO T A Flores Hi all, The use of all this vector and hashtable is not memory killer in JSP processing??? Is't better to use directly the

Re: Help with callable Statement

2000-10-19 Thread T A Flores
Callable Statement goes something like this: CallableStatement cs = con.prepareCall("{call procedureName(?,?)}"); cs.setString(1,var1); cs.setString(2,var2); cs.executeQuery(); Follow the link below and this covers callable statement.