开发者

Defensive database programming- robust code with T-SQL?

In the application development there is a concept of defensive programming. How to开发者_C百科 implement defensive programming techniques and writing robust code using Transact-SQL?


  • Simple Talk...
  • ...books
  • SQL Server Central
  • Alexander Kuznetsov (who is SO user AlexKuznetsov)

More generally

  • Understand TRY..CATCH and error handling
  • Datatype safety (no number compare against nvarchar for example)
  • Understand transactions
  • Consider stored procedures
  • Understand SQL injection


To add to what Scott said:

  • Use TRY / CATCH which is now supported in SQL Server
  • Validate the parameters of your procedures and use RAISERROR when things don't pass
  • Use transactions (carefully)


IF EXISTS()

is something that should be used a lot more often in T-SQL I think. A lot of times when developers write SQL code they don't think in terms of exceptions and faults as they do when writing regular code.


To consider the psychological angle to your question, you may find DBA Survival Skills – Think Defensively to be interesting reading.


In addition to what all the others said, enforce data integrity in the database!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜