User Aston - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T04:58:26Zhttp://stackoverflow.com/feeds/user/12308http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/135944/can-phps-sql-server-driver-return-sql-return-codes1Can PHP's SQL Server driver return SQL return codes?Aston2008-09-25T20:44:53Z2009-08-12T02:04:38Z
<p>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 code with PHP's mssql driver.</p>
<p>mssql_get_last_message() always returns nothing, and I'm thinking it's because it only returns the very last line that came from the server. When we run the proc in another application (outside PHP), there is blank line following the return code.</p>
<p>Has anyone figured out how to get return codes from SQL stored procs using PHP's mssql driver?</p>
http://stackoverflow.com/questions/75882/what-in-your-mind-is-the-best-php-mvc-framework/77675#776750Answer by Aston for What, in your mind, is the best PHP MVC framework?Aston2008-09-16T22:01:24Z2008-10-15T02:29:18Z<p>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.</p>
<p>If you want the simplicity of Code Igniter that includes PHP 5 features, go with <a href="http://www.kohanaphp.org" rel="nofollow" title="Kohana PHP">Kohana</a>, which was originally a fork of Code Igniter that eventually became its own separate entity.</p>
http://stackoverflow.com/questions/139228/what-do-you-do-with-a-developer-that-does-not-test-his-code/140177#1401770Answer by Aston for What do you do with a developer that does not test his code?Aston2008-09-26T15:20:56Z2008-09-26T15:20:56Z<p>If talking to him didn't work, and you can't fire him, then he's either lazy or unreasonable. If you can't take the high road and reason with the guy, hit him where it hurts and start docking his pay. Or if you really want to punish him, make him maintain the code. </p>
http://stackoverflow.com/questions/135944/can-phps-sql-server-driver-return-sql-return-codes/136014#1360140Answer by Aston for Can PHP's SQL Server driver return SQL return codes?Aston2008-09-25T20:53:58Z2008-09-25T20:53:58Z<p>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.</p>
http://stackoverflow.com/questions/135933/strategy-for-storing-an-string-of-unspecified-length-in-sql-server/135975#1359751Answer by Aston for Strategy for storing an string of unspecified length in Sql Server?Aston2008-09-25T20:48:10Z2008-09-25T20:48:10Z<p>Have you considered using the BLOB type?</p>
<p>Also, out of curiosity, is you don't control the size of the string, and neither does the user, who does?</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76540#765405Answer by Aston for What is the single most effective thing you did to improve your programming skills?Aston2008-09-16T20:22:26Z2008-09-16T20:22:26Z<p><strong>Deciding NOT to be a 'Jack-of-all-Trades'</strong></p>
<p>If you're serious about programming as a long term career, understand that you'll likely never be hired because of your versatility, but rather your expertise. To make an analogy, the least popular character in Everquest (at least when I played) was the Bard, who was good at nearly every skill but wasn't excellent at any of them. Pick a specialty and devote your time and energy at mastering fewer technologies rather than being so-so at many. </p>
http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72744#7274481Answer by Aston for What should a developer know before building a public web site?Aston2008-09-16T14:15:10Z2008-09-16T14:15:10Z<ul>
<li>Never put email addresses in plain text because they will get spammed to death</li>
<li>Be ultra paranoid about security.</li>
<li>Get it looking correct in Firefox first, <em>then</em> Internet Explorer.</li>
<li>Avoid links that say "click here". It ruins a perfectly good SEO opportunity.</li>
<li>Understand that you'll spend 20% of the time developing, 80% maintaining, so code it accordingly.</li>
</ul>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72539#725391Answer by Aston for What development book made the most impact on you as a developer?Aston2008-09-16T13:58:12Z2008-09-16T13:58:12Z<p>Code Complete followed closely by Head First Design Patterns</p>
http://stackoverflow.com/questions/135944/can-phps-sql-server-driver-return-sql-return-codes/135963#135963Comment by Aston on Can PHP's SQL Server driver return SQL return codes?Aston2008-09-26T14:55:13Z2008-09-26T14:55:13ZI think this works, thanks!