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...
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)...
The following servlet code snipets calls a stored procedure in SQL Server:
----------------------------------------------------------
String timeperiod = (request.getParameter("StartMonth") + request.getParameter("StartYear"));
String region =...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.