मैंने System.Transactions नामस्थान देखा है, और आश्चर्य है, क्या मैं वास्तव में इस नामस्थान उपयोग के साथ आरडीएमबीएस बना सकता हूं?सिस्टम का व्यावहारिक उपयोग क्या है। लेनदेन?
लेकिन जब मैंने कुछ उदाहरण देखा, तो मुझे समझ में नहीं आता कि कैसे सिस्टम। लेन-देन सरल प्रयास से परे कुछ भी करता है और हमें सफलता/विफलता परिणाम प्राप्त होता है?
यह एमएसडीएन की वेबसाइट पर उदाहरण है, मुझे पता है कि यह बहुत आसान हो सकता है लेकिन मैं इस नमूने में लाभ को समझने में असमर्थ हूं, क्या कोई मुझे बता सकता है कि इस निम्नलिखित नमूने में सरल प्रयास/पकड़ और लेनदेन के दायरे के बीच क्या अंतर है ।
यदि मुझे आरडीबीएमएस बनाना है (अपना खुद का आरडीएमबीएस बनाएं), तो मुझे समझ में आता है कि हमें ऑपरेशन की डिस्क पर बहुत सारे लॉग लिखना पड़ता है और अंत में हम रोलबैक के मामले में उन परिचालनों को पूर्ववत करते हैं, लेकिन यहां कुछ भी पूर्ववत करने के बारे में कुछ भी नहीं है।
// This function takes arguments for 2 connection strings and commands to create a transaction
// involving two SQL Servers. It returns a value > 0 if the transaction is committed, 0 if the
// transaction is rolled back. To test this code, you can connect to two different databases
// on the same server by altering the connection string, or to another 3rd party RDBMS by
// altering the code in the connection2 code block.
static public int CreateTransactionScope(
string connectString1, string connectString2,
string commandText1, string commandText2)
{
// Initialize the return value to zero and create a StringWriter to display results.
int returnValue = 0;
System.IO.StringWriter writer = new System.IO.StringWriter();
try
{
// Create the TransactionScope to execute the commands, guaranteeing
// that both commands can commit or roll back as a single unit of work.
using (TransactionScope scope = new TransactionScope())
{
using (SqlConnection connection1 = new SqlConnection(connectString1))
{
// Opening the connection automatically enlists it in the
// TransactionScope as a lightweight transaction.
connection1.Open();
// Create the SqlCommand object and execute the first command.
SqlCommand command1 = new SqlCommand(commandText1, connection1);
returnValue = command1.ExecuteNonQuery();
writer.WriteLine("Rows to be affected by command1: {0}", returnValue);
// If you get here, this means that command1 succeeded. By nesting
// the using block for connection2 inside that of connection1, you
// conserve server and network resources as connection2 is opened
// only when there is a chance that the transaction can commit.
using (SqlConnection connection2 = new SqlConnection(connectString2))
{
// The transaction is escalated to a full distributed
// transaction when connection2 is opened.
connection2.Open();
// Execute the second command in the second database.
returnValue = 0;
SqlCommand command2 = new SqlCommand(commandText2, connection2);
returnValue = command2.ExecuteNonQuery();
writer.WriteLine("Rows to be affected by command2: {0}", returnValue);
}
}
// The Complete method commits the transaction. If an exception has been thrown,
// Complete is not called and the transaction is rolled back.
scope.Complete();
}
}
catch (TransactionAbortedException ex)
{
writer.WriteLine("TransactionAbortedException Message: {0}", ex.Message);
}
catch (ApplicationException ex)
{
writer.WriteLine("ApplicationException Message: {0}", ex.Message);
}
// Display messages.
Console.WriteLine(writer.ToString());
return returnValue;
}
उपर्युक्त उदाहरण में हम क्या कर रहे हैं? मुझे लगता है कि एसक्यूएल क्लाइंट लाइब्रेरी सबकुछ सही करेगी? क्या इसका मतलब यह है कि System.IO.StringWriter या तो सभी सफलता पाठ या सभी विफलता पाठ होगा? या लेनदेनस्कोप के दायरे के बीच कोई लॉकिंग है?
"आरडीबीएमएस बनाने" का क्या मतलब है? – nos
रिलेशनल डाटाबेस मैनेजमेंट सिस्टम, एसक्यूएल सर्वर या माईएसक्यूएल या ओरेकल की प्रतिलिपि, मेरा मतलब है कि अगर मैं अपने स्वयं के XYZSQL डेटाबेस सिस्टम को .NET पर बनाना चाहता हूं, तो क्या मैं इसका उपयोग कर सकता हूं? –
वास्तव में नहीं, लेकिन यदि आप अपने नए XYZSQL डेटाबेस सिस्टम लेन-देन का समर्थन करते हैं तो आप अपने .NET XYZSQL ADO.NET ड्राइवर में System.Transactions के लिए समर्थन लागू कर सकते हैं। – nos