开发者

Performance concerns between DataSet and stored procedure

I have to develop one program that consists data manipulation (retrieve data, update data and new insert data) to multiple tables. Which will be suitable approach and faster in performance using DataSet object and stored procedure 开发者_运维技巧with CURSOR object? Please point me out. Thanks you all!


Data manipulation is typically faster when done in the DB in the stored procedure.

Unless there is a reason you have to do the manipulation within the application, do it on the DB itself.


I sugget to go for ORM aproach like Entety Framework , LINQ to SQL or Nhibernate you both get better performance and greater development speed.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜