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 biv343 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. alexreuter

    Can you run applet on separate server?

    yes, you can.
  2. alexreuter

    Can you run applet on separate server?

    Hello, I was wondering if it was possible to have the HTML which accesses an applet on one server, and have the applet code actually running on another server? Thanks, Alex
  3. alexreuter

    need to know how many records are found...

    I don't think there is a way to query the rs for its size. The solution I wrote will allow you to get the number for your array and then use rs.first() to move the rs "back to the beginning" as Inigo might say. If this is a solution you've tried, but for speed you don't want to loop...
  4. alexreuter

    need to know how many records are found...

    You can do something like this: //(rs is your result set) int count=0; while(rs.next()) count ++; } rs.first(); System.out.println("The size of the result set is: "+count); alex
  5. alexreuter

    Threads, performance and static classes

    OK. Here is the main method, with the Engine.load() call in it: ///////////////////////////////////////// public static void main(String[] args) { int numThreads = new Integer(args[0]).parseInt(args[0]); System.out.println(numThreads); try { Engine.load(); } catch (...
  6. alexreuter

    Threads, performance and static classes

    Hello, This is my first post here. We have a static engine which returns reports, and I am working with a multi threaded testing application in an effort to test its scalability. We are running inside java 1.1.8 on Solaris 7, with dual 4?? mhz processors and a couple gigs of ram. Here's my...

Part and Inventory Search

Back
Top