I have a problem with interbase database and sqldependency c#. I want to detect changes in database. When I run code:
public Form1()
{
InitializeComponent();
DbConnection c = new TAdoDbxInterBaseConnection();
c.ConnectionString = @"Database=C:\MeronaSoft\MSDB.gdb;User=SYSDBA;Password=masterkey";
SqlDependency.Start(c.ConnectionString);
}
I get: An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
Additional information: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL.
Maybe it is not possible to us interbase with sqldependency?