gpt4 book ai didi

PostgreSQL ODBC 64 位驱动程序结果为 "architecture mismatch"

转载 作者:行者123 更新时间:2023-11-29 13:37:15 25 4
gpt4 key购买 nike

我正在运行 Win 7 64,最新的 PostgreSQL 64 位,我安装了 64 位 ODBC 驱动程序 (0310-64)。使用两个 ODBC 控制面板,我可以创建 32 位和 64 位连接。两者都测试正常。

在 VS 2010 Express 中,我安装了 MS 的 ODBC 驱动程序 1.0.4030.0。我可以连接到 32 位 DSN,但 64 位 DSN 出现架构不匹配错误。

这没有意义,因为我在 64 位 ODBC 控制面板上设置了 64 位 DSN,我在其中获得了 64 位 PG 作为选项(与 32 位 CP 不同)。我选择了 UNICODE 版本。

最佳答案

要使其与 64 位 DSN 和 Visual C# 2010 Express Edition 一起使用,请编辑项目设置文件 .csproj(例如 WindowsFormsApplication1.csproj)并将 PlatformTarget 属性设置为 x64:

<PlatformTarget>x64</PlatformTarget>

此外,您不需要在外部安装 Microsoft ODBC .NET 数据提供程序驱动程序,因为它包含在 .NET 中作为 System.Data.Odbc命名空间。

例子:

private void button1_Click(object sender, EventArgs e)
{
OdbcConnection cn = new OdbcConnection("dsn=PostgreSQL35W");
OdbcCommand cmd = new OdbcCommand("SELECT version()", cn);
cn.Open();

richTextBox1.AppendText(cmd.ExecuteScalar().ToString());

cn.Close();
}

结果:

enter image description here

同时考虑使用 Npgsql反而。它似乎是 .NET 的非常常见的 PostgreSQL 接口(interface)。

关于PostgreSQL ODBC 64 位驱动程序结果为 "architecture mismatch",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6801238/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com