if we are updating a database using thread, and mean while
application crashes or thread being aborted then what will
happen in Database? Rollback or Database will be updated?
Please explain with different scenario.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

how to communicate inventory system and account system?

1 Answers  


How do I create a dbml file?

0 Answers  


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

1 Answers   iGate,


What is entity framework c#?

0 Answers  


What is verbatim literal in c#?

0 Answers  






Illustrate serialization?

0 Answers  


What Is The Difference Between The System.array.copyto() And System.array.clone()?

0 Answers   Infosys,


What is difference between assembly and namespace?

0 Answers  


What is difference between code access and role based security?

0 Answers  


What does firstordefault mean in c#?

0 Answers  


Is string passed by reference in c#?

0 Answers  


Explain the three services model (three-tier application).

3 Answers   4Cplus,


Categories