Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. phatening

    CSS and BORDERS

    The following code is supposed to produce a right border thats a black solid line. But it becomes a dotted black line because the border top and bottom is red. Is there anyway around this? Thanks for any help. <dl> <dt style="border-right: 2px solid black;">Header</dt> <dd...
  2. phatening

    Static Classes and Multi-Threads

    Hi all, I have a multi-threaded environment. I have a JDBC class that connects to the database. I also have a class called, Query, that has static methods and a static instance variable of the JDBC class. Each method executes a specific SQL statement and it uses the JDBC static instance...
  3. phatening

    PreparedStatement and Statement

    Hi all, I know that using PreparedStatement can speed up performance when executing multiple SQL statements, but does it slow performance when using it to execute a single statement instead of using the Statement class instead. Thanks!
  4. phatening

    Online Application

    Hi fellow programmers, Is the only way of displaying a Java application online is by utilzing applets? Does anyone know if I can use Java Web Start and how I may use that? In order for my viewers to view my app thru an applet, do they have to download the most recent version of the java vm...
  5. phatening

    How do you read data off a webpage?

    Hello fellow programmers, I would like to make a stock ticker or something similar but with different data. I believe the general algorithm to do this would be: 1) Develop a RSS aggregator and store it in a server. 2) Have the aggregator access data from a RSS or XML page. 3) Display the data...
  6. phatening

    How to refresh pg when user hits back

    Sorry if I was being vague, but I would like to acheive the same functionality that gmail has. When a bolded msg is clicked and the user presses the back button, the msg is no longer bolded. Thanks.
  7. phatening

    How to refresh pg when user hits back

    thanks for the reply, but that doesn't work.
  8. phatening

    How to refresh pg when u hit back button

    Hi programmers, If anyone has gmail, when you click on a new and bolded msg and click the back button, the msg is no longer bolded. Does anyone know how to refresh the page when the back button is clicked? I appreciate any help. Thanks.
  9. phatening

    How to refresh pg when user hits back

    Hello fellow programmers, If anyone has gmail, when you click on a new and bolded msg and click the back button, the msg is no longer bolded. Does anyone know how to refresh the page when the back button is clicked? I appreciate any help. Thanks.
  10. phatening

    How to write startup code

    Thanks for your response... that helps.
  11. phatening

    How to write startup code

    Hi fellow programmers, Does anyone know how to write startup code(code that is ran only when the web app is started or restarted) for a web application thats being written with JSP and Java servlets? I'm trying to write code that accesses the database once everytime the web application is...
  12. phatening

    Daily script to access database

    Hello programmers, How would I use a stored procedure to access the database on a daily basis? How can I run a piece of code everytime my webapp has restarted and only once after each restart? I am using JSP's. Thanks =).
  13. phatening

    sql delete function?

    If I would approach this using a stored procedure in my front end, how would I run it on a daily basis? How can I run a piece of code everytime my webapp has restarted and only once after each restart? I am using JSP's. Thanks =).
  14. phatening

    sql delete function?

    Thanks guys. I appreciate it.
  15. phatening

    sql delete function?

    Hey fellow programmers, Quick question. For some reason I have this belief in my head that you can write a constraint(i believe) that will automatically delete expired records whenever a record expires. Supposedly the database will run the constraint everyday or routinely and the constraint...
  16. phatening

    Most Efficient Way of Connecting to the Database

    Well its a mysql db server and I use JSP. I'll probably just close my connections and reopen them when needed. Your right, I'll run into less problems this way. Thanks theniteowl.
  17. phatening

    Most Efficient Way of Connecting to the Database

    Hi All, I'm creating a web application. And I was wondering if anybody knows if there are any major differences between the 2 ways of connecting to a database: 1) connecting everytime there's a call to the database and closing the connection after every call. 2) connecting at the...
  18. phatening

    How To Give Focus to a Button After A Function Call....

    Hi All, I appreciate your time guys. If you scroll down to the end of the page given below, you will see that the submit button is disabled. It is disabled from <body onload(...)>. If you check the checkbox above the submit button and click the button right afterwards, the button will appear...

Part and Inventory Search

Back
Top