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 TouchToneTommy 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. dharmer1975

    Setting ACTION on FORM tag equal javascript variable

    I've got a variable called test that I declare in the following function in an include file: ------------------------------------ function checkApplication() { if (document.jolApply.platform.options[document.jolApply.platform.selectedIndex].value == "null") { alert ("Please...
  2. dharmer1975

    Setting parameter in a CallableStatement

    What's the difference between between these two statements--they appear to do the same thing, but the second one doesn't work: CallableStatement cs = con2.prepareCall("{call harmerd.FERPmonthlybyregion (?, 'CL%')}"); cs.setString(1, "harmerd." + timeperiod)...
  3. dharmer1975

    Callable statement question -- what am I missing?

    The following servlet code snipets calls a stored procedure in SQL Server: ---------------------------------------------------------- String timeperiod = (request.getParameter("StartMonth") + request.getParameter("StartYear")); String region =...
  4. dharmer1975

    Modifying a procedure to accept multiple conditions

    I've got a procedure that essentially creates and runs a select statement on a view that is specified via a single parameter. I'd now like to add multiple 'where conditions' to the generated statement in the procedure via using additional parameters. For example, here's my original procedure...
  5. dharmer1975

    Question on procedure syntax with using one variable

    I'm trying to create the following procedure in MS SQL Server 7.0 I get an error "Error 170: Line 3: Incorrect syntax near '@selectview'. Line 3: Incorrect syntax near '@selectedview'. I want @selectedview to be a parameter name (for the name of a view) I want to pass to the procedure...

Part and Inventory Search

Back
Top