Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

sql server - Getting the ROWCOUNT value (not @@ROWCOUNT) in SQL -


is there way see rowcount set to?

the component used call stored procedure has option limit how many rows returned, apparently setting rowcount. 1 stored procedure returns single aggregated row, intermediate queries return more limit , getting truncated. function of generic , used call other stored procedures; other procedures may need limit.

right setting rowcount large number @ top of stored procedure , setting (hard-coded) regular limit before return result. don't maintain component calls stored procedures may not know if returned row limit changed. i'd set local variable current rowcount value, , set @ end. there way see rowcount set to?

if query sys.dm_exec_sessions dmv return number of rows returned on session point (should of course same @@rowcount).

select row_count sys.dm_exec_sessions session_id = @@spid 

you might able play around see if can use it

right setting rowcount large number @ top of stored procedure

you can set rowcount 0, in case return rows


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -