I am trying to connect to a Firebird Database sitting on my desktop using C#.NET. I have included the Firebird .NET source. I keep getting this error: "Invalid PInvoke metadata format." I am not sure what I am doing wrong. Here is my connection string:
private const string m_sConnectString =
"User=SYSDBA;" +
"Password=masterkey;" +
"Database=C:\\Firebird\\QUALITRAC.fdb;" +
"DataSource=localhost";
When I look at the the Connection object, it doesn't look like the DATABASE is getting set.
private const string m_sConnectString =
"User=SYSDBA;" +
"Password=masterkey;" +
"Database=C:\\Firebird\\QUALITRAC.fdb;" +
"DataSource=localhost";
When I look at the the Connection object, it doesn't look like the DATABASE is getting set.