Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

जब डेटासेट बदला जाता है तो एसक्लड निर्भरता ऑन चेंज ईवेंट को सक्रिय नहीं करती है

घटना आग लगने के बाद एसक्लड निर्भरता हटा दी जाती है, इसलिए आपको निर्भरता के साथ फिर से कमांड निष्पादित करने की आवश्यकता होती है। नीचे एक कंसोल ऐप उदाहरण दिया गया है जो तब तक फिर से सदस्यता लेगा जब तक कि अधिसूचना किसी त्रुटि के कारण न हो।

using System;
using System.Data;
using System.Data.SqlClient;

namespace SqlDependencyExample
{
    class Program
    {

        static string connectionString = @"Data Source=.;Initial Catalog=YourDatabase;Application Name=SqlDependencyExample;Integrated Security=SSPI";

        static void Main(string[] args)
        {

            SqlDependency.Start(connectionString);

            getDataWithSqlDependency();

            Console.WriteLine("Waiting for data changes");
            Console.WriteLine("Press enter to quit");
            Console.ReadLine();

            SqlDependency.Stop(connectionString);

        }

        static DataTable getDataWithSqlDependency()
        {

            using (var connection = new SqlConnection(connectionString))
            using (var cmd = new SqlCommand("SELECT Col1, Col2, Col3 FROM dbo.MyTable;", connection))
            {

                var dt = new DataTable();

                // Create dependency for this command and add event handler
                var dependency = new SqlDependency(cmd);
                dependency.OnChange += new OnChangeEventHandler(onDependencyChange);

                // execute command to get data
                connection.Open();
                dt.Load(cmd.ExecuteReader(CommandBehavior.CloseConnection));

                return dt;

            }

        }

        // Handler method
        static void onDependencyChange(object sender,
           SqlNotificationEventArgs e)
        {

            Console.WriteLine($"OnChange Event fired. SqlNotificationEventArgs: Info={e.Info}, Source={e.Source}, Type={e.Type}.");

            if ((e.Info != SqlNotificationInfo.Invalid)
                && (e.Type != SqlNotificationType.Subscribe))
            {
                //resubscribe
                var dt = getDataWithSqlDependency();

                Console.WriteLine($"Data changed. {dt.Rows.Count} rows returned.");
            }
            else
            {
                Console.WriteLine("SqlDependency not restarted");
            }

        }


    }
}



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. मैं तालिका में डुप्लिकेट पंक्तियों को कैसे हटा सकता हूं

  2. स्ट्रिंग को कैसे विभाजित करें और SQL सर्वर में तालिका में मान डालें

  3. जब डिस्टिंक्ट और ग्रुप बाय का प्रदर्शन अलग होता है?

  4. एसक्यूएल जॉइन बनाम प्रदर्शन में?

  5. एक विशाल तालिका में स्तंभ प्रकार बदलें