我正在尝试以编程方式创建一个postGres数据库c#,之前我手动创建了DB并使用了连接字符串来打开它并对其进行操作并且它运行良好。
现在我必须首先检查那个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"
+ ";";
并且工作正常,那么为什么现在有错误以及如何治愈呢?
答案 0 :(得分:2)
您需要在连接字符串中添加Database=postgres
connStr = "Server=localhost;Port=5432;User Id=postgres;Password=password_of_the_user;Database=postgres";
因为postgres
是PostgreSQL的默认管理连接数据库