if i used stored procedure for retrieving the data from sql
server.in front end i had used data reader.when 100 records are
there in table.when it has displayed ten records in frontend
database has been collapsed.then where should our data available...
Answers were Sorted based on User's Feedback
Answer / santosh rudra
Since you have used data reader, the data will be in the
database. Data reader is connection oriented, if connection
is lost data is lost
Is This Answer Correct ? | 13 Yes | 2 No |
Answer / dhaval
If we show 10 data in frontend then it can be residing in the ArrayList or any kind of collections. On demand, we can get other 10 likewise. if data is lost then there is no way to get it we will find the data in Database only
Is This Answer Correct ? | 0 Yes | 0 No |
Give an example of a directcast.
Can you declare a C++ type destructor in C# like ~MyClass() ?
What?s the implicit name of the parameter that gets passed into the class? set method?
what is the difference between passing a value object by reference and a reference object by value?
How to sign an assembly with strong name?
What is an example of delegation?
What are the drawbacks of extending an interface as opposed to extending a class?
Why are mutable structs evil?
What do you understand by the terms datareader object and dataset object?
How does insertion sort work?
What does the keyword “virtual†declare for a method or property?
Is c# queue thread safe?