pthalacker
Programmer
- Aug 30, 2004
- 150
I am converting a bunch of VFP code to SQL Server stored procedures so they can be called from Asp.Net. I can call the stored procedure in the Enterprise Manager and get the appropriate result set. I have a valid connection handle to the database containing the stored procedure, but when run the following code:
I get an ODBC error: Could not find stored procedure 'GetAcctBalance'
Can you assist me in troubleshooting this?
pamela
Code:
lcSql = [Execute GetAcctBalance '20030509AG', '12/31/2006']
lnResult = SQLExec(oSpi.hConn, m.lcSql, 'csrBalance')
Can you assist me in troubleshooting this?
pamela