Search Results

1
vote
3answers
371 views

Can PHP’s SQL Server driver return SQL return codes?

Stored procs in SQL Server sometimes finish with a return code, as opposed to a recordset of data. I've seen ASP code that's able to get this return code, but I can't figure out how to get this co …
1
vote

Strategy for storing an string of unspecified length in Sql Server?

Have you considered using the BLOB type? Also, out of curiosity, is you don't control the size of the string, and neither does the user, who does? …
0
votes

Can PHP’s SQL Server driver return SQL return codes?

I tried using @@ERROR and I keep getting 0 as the result, but when I run the exact same proc in Query Analyzer with the exact same parameters, I get return code = 1. …