Search Results

1
vote
3answers
382 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 …
0
votes

What, in your mind, is the best PHP MVC framework?

Code Igniter is great, but doesn't take advantage of any PHP 5 features, such as auto-class loading, better security, better performance, and better overall OOP support. If you want the sim …
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. …