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
Update Panel not loading DropDown
DOS print to PDF ?
Does anyone know how to make a disk image from the iphone memory?
'SettingsSingleFileGenerat
or' 'ResXFileCodeGenerator' problem
ACT 2009 - How to Move database
phpbb forum
I need a help to make a small project with autocomplete functions
Sync Access database contacts with Exchange Contacts list
Colour highlighted search in vi
Citrix not finding the license server