gpt4 book ai didi

c# - 数据库 "openpg"不存在严重性 : FATAL Code: 3D000

转载 作者:搜寻专家 更新时间:2023-10-30 23:00:20 25 4
gpt4 key购买 nike

我正在尝试以编程方式创建一个 postGres 数据库 c#,之前我手动创建了数据库,并使用连接字符串打开它并对其进行操作,它运行良好。

现在我必须首先检查该 DBB 是否已经存在,如果不存在,则首先创建它,然后执行其他操作,例如读写它。

我的代码是:

  internal void createDataBaseIfDoNotExist()
{
string connStr = string.Empty;
connStr =
"Server=" + "localhost"
+ ";Port=" + "5432"
+ ";User Id=" + "openpg"
+ ";Password=" + "oppwd"
+ ";";
var m_conn = new NpgsqlConnection(connStr);
var m_createdb_cmd = new NpgsqlCommand(@"CREATE DATABASE IF NOT EXISTS testDb ;", m_conn);
try
{
m_conn.Open();
m_createdb_cmd.ExecuteNonQuery();
m_conn.Close();
}
catch (Exception ex)
{
MessageBox.Show("Errr on createDataBaseIfDoNotExist query :" + ex);
}
}
And it gives followign error:
database "openpg" does not exist Severity: FATAL Code: 3D000

虽然我保留的数据库名称是“testDb”,但它不是“openpg”

之前我创建了一个数据库名称“NewDB”并创建了这样的连接字符串:

    connStr =
"Database=" + "NewDB"
+ ";Server=" + "localhost"
+ ";Port=" + "5432"
+ ";User Id=" + "openpg"
+ ";Password=" + "oppwd"
+ ";";

它工作得很好,那么为什么现在有错误以及如何解决它?

最佳答案

需要在连接字符串中加入Database=postgres

 connStr = "Server=localhost;Port=5432;User Id=postgres;Password=password_of_the_user;Database=postgres";

因为 postgresPostgreSQL 的默认管理连接数据库

关于c# - 数据库 "openpg"不存在严重性 : FATAL Code: 3D000,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34175836/

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