gpt4 book ai didi

postgresql - Npgsql 抛出错误 : wrong connection string. 无法连接到 postgreSQL [F#]

转载 作者:行者123 更新时间:2023-11-29 11:58:57 24 4
gpt4 key购买 nike

我在 F# 中使用 SQLProvider 连接到我的(本地)PostgreSQL 数据库。我从 fsprojects 开始使用这段代码:

open FSharp.Data.Sql
open Npgsql

let [<Literal>] ResolutionPath =
__SOURCE_DIRECTORY__ + @"/../../packages/Npgsql/lib/net451/"

[<Literal>]
let connectionString = "Host=localhost;Port=5432;User ID=test;Password=test;Database=testdb;"

type PostgreSQL =
SqlDataProvider<
Common.DatabaseProviderTypes.POSTGRESQL,
ConnectionString = connectionString,
ResolutionPath = ResolutionPath,
IndividualsAmount = 1000,
UseOptionTypes = true>

当我试图编译它时,我收到了这个错误信息:

(path)/Database.fs(60,9): error FS3033: The type provider 'FSharp.Data.Sql.SqlTypeProvider' reported an error: Could not create the connection, most likely this means that the connectionString is wrong. See error from Npgsql to troubleshoot: The type initializer for 'Npgsql.Counters' threw an exception. (path)/Database.fs(60,9): error FS3033: The type provider 'FSharp.Data.Sql.SqlTypeProvider' reported an error: Could not create the connection, most likely this means that the connectionString is wrong. See error from Npgsql to troubleshoot: The type initializer for 'Npgsql.Counters' threw an exception.

我已经检查过用户 ID 和密码以及连接字符串中的所有内容都是正确的。我实际上不知道如何调试这个问题。你知道什么地方出了问题吗?它对您有用吗?没有任何问题吗?

我使用的是 macOS 10.12。

最后,如果我无法解决这个问题,您是否可以推荐任何其他方法来连接到 postgreSQL(使用类型提供程序)?

最佳答案

错误消息清楚地表明 Npgsql.Counters 的类型初始值设定项抛出了异常 - 这是 Npgsql 3.2 对 Windows 性能计数器的新支持。

不幸的是,在各种情况下,性能计数器似乎存在几个问题(参见 #1447#1435)。因此,版本 3.2.2(将于本周发布)默认不会使用它们。

您能否确认您使用的是 3.2.1(而不是 3.2.0),因为引入了部分修复?如果您使用的是 3.2.1 并出现此异常,则必须等待几天才能使用 3.2.0,并且可以同时使用 3.1.10,不会抛出异常。

关于postgresql - Npgsql 抛出错误 : wrong connection string. 无法连接到 postgreSQL [F#],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42448035/

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