我似乎在从示例C#应用程序连接到嵌入式FireBird数据库时遇到问题。这就是我所拥有的。
static void Main(string[] args)
{
//Some constant parameters used to form up the connection string...
#region constant literals
const String User = "SYSDBA";
const String Password = "masterkey";
const String DBPath = "D:\\!tmp\\1\\cafw.fdb";
const String DLLPath = @"fbembed.dll";
const String Charset = "WIN1251";
const int Dialect = 3;
#endregion
//I check whether we actually have a database file nearby
//and fbembed.dll. If we don't - we leave
if (File.Exists(DBPath) == true && File.Exists(DLLPath) == true)
{
//I form up a connection string out of literals I've declared above
FbConnectionStringBuilder CStr = new FbConnectionStringBuilder();
CStr.ServerType = FbServerType.Embedded;
CStr.UserID = User;
CStr.Password = Password;
CStr.Dialect = Dialect;
CStr.Database = DBPath;
CStr.Charset = Charset;
CStr.ClientLibrary = DLLPath;
//And then I finally try to connect
FbConnection Conn = new FbConnection(CStr.ToString());
try
{
//See what we've got in the end
Console.WriteLine(CStr.ToString());
//And try to connect
Conn.Open();
}
catch (Exception Ex)
{
//Show me what has gone wrong
Console.WriteLine("\n" + Ex.Message.ToString());
Console.ReadKey();
}
finally
{
Conn.Close();
}
}
}
问题是,它让我产生了一个
server type = Embedded; user id = SYSDBA; password = masterkey; dialect = 3; initial catalog = D:!tmp \ 1 \ cafw.fdb;字符集= WIN1251;客户端库= fbembed.dll
找不到错误代码335544972的消息。
无效的ESCAPE序列
作为输出。
我已经google了解了大约335544972错误代码,它似乎是关于无效连接字符串的东西,但我还没有找到任何关于它的“官方”信息。
任何人遇到类似的东西都可以告诉我,我做错了什么?
感谢。
UPD: 正如我所建议的那样,我试图简化我的连接字符串。所以,我使用
而不是上面所做的FbConnection Conn = new FbConnection("Database=D:\\tmp\\1\\cafw.fdb;ServerType=1");
它给了我一条消息“嵌入式Firebird不支持Trusted Auth”。所以,我尝试使用常规的sysdba登录
FbConnection Conn = new FbConnection("Database=D:\\tmp\\1\\cafw.fdb;ServerType=1;User=SYSDBA;Password=masterkey");
并收到了相同的错误消息。
答案 0 :(得分:5)
奇怪的东西。
很难相信,但我可以为此命名的唯一原因是我的c#解决方案位于d:...... \ c#\ myAppProject的某处(是的,这都是关于#符号)。
在我更换项目后,一切正常。
答案 1 :(得分:2)
我知道这不是你的答案,但它适合我,所以..
即使不需要用户和密码,您也必须确保提供用户和密码(任何密码都可以)。