摘要: Performance of an application is very important for a multi-user application. Performance is not only the speed of execution; it includes the load and concurrency aspects. Visual Studio is one of the tools used for Performance Test. Visual Studio Test edition or Visual Studio 2010 Ultimate provides the support for test automation. Introduction Performance of an application is very important for a multi-user application. Performance is not only the speed of execution; it includes the loa 阅读全文
posted @ 2012-11-20 14:02 璎Nicole珞 阅读(930) 评论(0) 推荐(0) 编辑
摘要: Visual Studio is one of the tools used for Performance Test. Visual Studio Test edition or Visual Studio 2010 Ultimate provides the support for test automation. This article describes the web test feature available in visual studio. IntroductionPerformance of an application is very important for a multi-user application. Performance is not only the speed of execution; it includes the load and concurrency aspects. Performance Test is an answer for the following questions •How can we ensure th 阅读全文
posted @ 2012-11-20 11:19 璎Nicole珞 阅读(1769) 评论(0) 推荐(0) 编辑
摘要: 存储过程如同一门程序设计语言,同样包含了数据类型、流程控制、输入和输出和它自己的函数库。 一.创建存储过程 create procedure sp_name() begin ......... end 二.调用存储过程 1.基本语法:call sp_name() 注意:存储过程名称后面必须加括号,哪怕该存储过程没有参数传递 阅读全文
posted @ 2012-11-20 10:52 璎Nicole珞 阅读(200) 评论(0) 推荐(0) 编辑