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 Chris Miller 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. anchal

    dynamic number of placeholders for IN operator in SQL query

    Hi, Thanks. I just found an answer to my query at the following link. I am trying out this option. http://www.standardreporting.net/survival/view.aspx?_@id=53446 Regards, Anchal.
  2. anchal

    dynamic number of placeholders for IN operator in SQL query

    Hi, Thanks for your quick reply. My problem is that I have around 10 such IN operators in my SQL querry. Also I am expected to keep my query static. The solution you have provided is good but makes my query dynamic because the placeholder part is generated at runtime and appended to base query...
  3. anchal

    dynamic number of placeholders for IN operator in SQL query

    Hi, I have a problem related to passing a number of parameters (the number changes dynamically) for the IN operator in the WHERE clause of a select statement. I want to have a static query e.g. "select * from emp where emp_name in (?, ?, ?, ....)". Here the number of place holders are...
  4. anchal

    JTree node as a hyperlink in applet

    Thanks. I too figured it out sometime back. :-)
  5. anchal

    JTree node as a hyperlink in applet

    Hi, I'm building a tree in applet using JTree. I want each node of the tree to be a link such that when the user clicks a node, the request goes to a servlet. Also, each node sends a unique key-value pair to the servlet so that the servlet knows which node was clicked. This means that each node...
  6. anchal

    capturing 'button click' event

    Looks like I'll have to modify the functionality itself..!! Thanks anyway..!! :-) Regards, Anchal.
  7. anchal

    capturing 'button click' event

    Hi, Thanks for your guidance. But I still don't get as to how I should know whether the button clicked was the 'Ok' button or 'Cancel' button to assign an appropriate value to the JavaScript variable! For that matter capturing any event associated with 'file download' dialog box is a mystery to...
  8. anchal

    capturing 'button click' event

    Hi, Do you mean the page that contains the link? Well this page contains links corresponding to transactions. Since I'm using Struts, an Action class is responsible for forwarding the request to a JSP say 'main.jsp' that displays this page. When user clicks a link say 'T1' on this page, the...
  9. anchal

    capturing 'button click' event

    Hi, This is in connection with the query posted in Java (sun) forum dated Jul 31, 2003 and titled 'automatic redirect after file download'. Any suggestions? Thanks, Anchal.
  10. anchal

    capturing 'button click' event

    Hi, Is there a way to know which button was clicked by the user on a 'file download' dialog box e.g. 'Ok' or 'Cancel' button? Thanks, Anchal.
  11. anchal

    automatic redirect after file download

    Hi, Please refer to the code below: response.setContentType ("application/xml"); response.setHeader ("Content-Disposition", "attachment; filename=\"my.xml\""); java.io.BufferedReader in = new java.io.BufferedReader(new java.io.FileReader(xmlPath))...

Part and Inventory Search

Back
Top