- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
无法使用 .Net 客户端访问嵌入式 Firebird 数据库服务器
我的目标是开发一个使用嵌入式 Firebird 服务器的程序,但在尝试使用 .Net 客户端建立连接时遇到错误。我听从了多个线程的建议以使其正常工作,但我无法弄清楚。我已尝试更改连接字符串和文件,但仍然出现相同的错误。
这里详细解释了我的研究和我迄今为止所做的一切尝试:
How to connect and use Firebird db embedded server with Visual C# 2010
我下载了链接中指定的文件,按照步骤运行代码,得到了与原始发布者相同的错误消息:
FirebirdSql.Data.FirebirdClient.FbException Message=Unable to complete network request to host "127.0.0.1".
使用“localhost”代替 IP 会产生同样的错误。
可接受的答案是确保所有 .dll 和配置文件都复制到我的项目文件(包含代码的目录)和输出目录(bin/debug),我已经这样做了。我复制了 zip 文件夹中的每个文件。此外,@Robin Van Persi 声明不使用“紧凑型 .Net 数据提供程序”,我怎么知道我是否在使用它?我从问题中的链接下载了文件。
@PlageMan 提供的另一个答案是添加 ServerType=1;到连接字符串并删除产生这些错误的 DataSource 和 Port 属性:
FbConnection con = new FbConnection("User=SYSDBA;Password=masterkey;Database=TEST.FDB;Dialect=3;Charset=UTF8;ServerType=1;");
System.NotSupportedException Message=Specified server type is not correct.
FbConnection con = new FbConnection("User=SYSDBA;Password=masterkey;Database=TEST.FDB;Dialect=3;Charset=UTF8;");
System.ArgumentException Message=An invalid connection string argument has been supplied or a required connection string argument has not been supplied.
@Toastgeraet 的最后一个回答添加了将 fbembed.dll 重命名为 fbclient.dll 或 gds32.dll。三种方式我都试过了,没有变化。事实上http://www.firebirdsql.org/en/firebird-net-provider-faq/说 fbembded.dll 但这也不起作用。
How to solve connection error in c# while using firebird embeded database?
对于将 fbembed.dll 重命名为 fbclient.dll 也有相同的建议,这对原始发布者也不起作用。连接字符串中接受的答案 ServerType=1,但@cincura.net 答案下的评论给了我一个新的调查可能性;处理器架构。不幸的是,在 64bt 和 32 位版本之间切换没有任何区别。
我认为切换到 32 位版本可能是答案,因为我使用的是 Visual Studios Express。
Error in using Embeded Firebird
这个帖子的最后一条评论是另一个人说换成 32 位也没有解决问题。
Trying to use the firebird embedded server - Specified server type is not correct
我回去查找有关 ServerType 的信息,因为我看到它是 1 和 0 并找到了这篇文章。 @Nigel 的回答是更新到最新版本的 .Net 提供商。不幸的是,我不知道如何使用 Firebird 网站上的最新版本 (4.5.1.0),因为它缺少示例中的 FirebirdSql 命名空间。此外,Visual Studios 会警告我在导入 .Net 时目标版本错误。
我做错了什么?我是否需要使用不同的连接字符串或新版本的 Firebird/.Net 提供程序?我还缺少其他东西吗?
我意识到这个问题可能被认为是重复的,但到目前为止我找到的答案都没有解决我的问题。此外,我在上面引用的以前的 StackOverflow Q/A 都是多年以前的,所以我希望有人可以分享新信息。
最佳答案
我刚刚创建了一个非常基本的程序来测试从 C# 嵌入的 Firebird。您需要添加最新的 FirebirdSql.Data.FirebirdClient
nuget 包 (4.5.1.0),并将 Firebird 嵌入式压缩包的全部内容放入与.exe.
请注意,您需要匹配应用程序的位数:
AnyCPU 似乎相当棘手。当我将可执行文件编译为 AnyCPU 并在 64 位机器上运行时,它在与 Firebird Embedded 64 位结合使用时给出了 BadImageFormatException
,但与 Firebird Embedded 32 位一起工作;这与我的预期相反。
class Program
{
private const string DefaultDatabase = @"D:\data\db\employee.fdb";
static void Main(string[] args)
{
string database = args.Length > 0 ? args[0] : DefaultDatabase;
var test = new TestEmbedded(database);
test.RunTestQuery();
Console.ReadLine();
}
}
class TestEmbedded
{
private readonly string connectionString;
public TestEmbedded(string database)
{
var connectionStringBuilder = new FbConnectionStringBuilder();
connectionStringBuilder.Database = database;
connectionStringBuilder.ServerType = FbServerType.Embedded;
connectionStringBuilder.UserID = "sysdba";
connectionString = connectionStringBuilder.ToString();
Console.WriteLine(connectionString);
}
internal void RunTestQuery()
{
using (var connection = new FbConnection(connectionString))
using (var command = new FbCommand("select 'success' from RDB$DATABASE", connection))
{
Console.WriteLine("Connecting...");
if (connection.State == System.Data.ConnectionState.Closed)
{
connection.Open();
}
Console.WriteLine("Executing query");
using (var reader = command.ExecuteReader())
{
if (reader.Read())
{
Console.WriteLine(reader.GetString(0));
}
}
}
}
}
这个程序生成的连接字符串是:
initial catalog=D:\data\db\employee.fdb;server type=Embedded;user id=sysdba
这似乎是连接所需的最低要求。请注意,虽然 Firebird embedded on windows 不执行任何身份验证,但需要提供 user id
,否则会触发受信任的身份验证,这不适用于 Firebird embedded。
关于c# - 无法使用 .Net 客户端访问嵌入式 Firebird 数据库服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26179554/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!