I'm using sqlexec in a number of places, but when I use it on a certain stored procedure, VFP just crashes. no messages, no nothing; just completely disappears. Anyone know what this is? I'm using a sql server backend. I call other stored procedures in the same app, and not a problem. I call sqlexec() 3 times in the same function, and the other two calls don't have a problem. I even switched the text to call a different sproc there, and it works fine. It only fails when I call this one specific sproc. I also tried this exact same call in sql Query Analyzer and it works. This is the call:
"
that fails. If I use:
"
it goes through just fine.
BlackDice
Code:
exec pr_AddWork 126
that fails. If I use:
Code:
"exec pr_AddPerson 126
it goes through just fine.
BlackDice