Microsoft
Software
Hardware
Network
Question : Get return value from SQL stored Procedure with Javascript
Hello experts.
We have a stored procedure written in SQL (MS SQL Server 2005 ):
ALTER PROCEDURE [dbo].[test_insert]
@person_nbr varchar(12) output
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
SELECT @person_nbr = max(last_generated) + 1
from system_counters
where counter_type = 'person_nbr'
END
// and the javascript that reads in the SP:
var dbConn = DatabaseConnectionFactory.
createData
baseConnec
tion ('com.microsoft.sqlserver.
jdbc.SQLSe
rverDriver
','jdbc:sq
lserver://
localhost:
1433;datab
aseName=Te
st;','un',
'pw');
var result = 0;
var sql = "exec dbo.test_insert()"
logger.warn("Running query: " + sql); //changeme to info or debug once its all working
result = dbConn.executeUpdate(sql);
globalMap.put('PER_NBR', result)
dbConn.close();
return message;
----------------------
Utlimate goal is to get the value of the person_nbr variable in the SQL Stored Proc to return and store into a javascript variable. Any thoughts as to where to code goes wrong? We get an "unknown syntax" error.
Thanks in advance!
Answer : Get return value from SQL stored Procedure with Javascript
HI
Change
var sql = "exec dbo.test_insert()"
to
var sql = "exec dbo.test_insert"
Random Solutions
100% CPU usage in vCenter but not in taskmanager on the Windows NT 4.0 VM that has been converted
asp - The resource could not be found
ASP.NET: "Invalid object name" in GridView SqlDataSource
Problems installing the AjaxControlTooKit.dll
nslookup issue
install problems with Framework .net 3.5 in Windows Server 2008 SP2 x86
Outlook 2007 does not remember password.
iPad Camera Connection Kit does not display .jpg images on iPad
How do I make sure that DFS is operating with Server 2008 options (file deltas)?
PHP - Just installed question