NpgSQL return 只有 table 的第一列名称
NpgSQL return only first column name of table
我已经使用 PostgreSQL/NpgSQL 将 c# 桌面应用程序连接到 PostgreSQL 数据库。第一个任务是 return 我数据库中的所有 table 名称,它工作正常。根据这个结果,我想得到每个 table 的所有列名。但问题是 NpgDatareader 总是有一个列是 table 的第一列,它不包含其他列名。任何提示或帮助将不胜感激。
NpgsqlConnection npgConnection2 = new NpgsqlConnection(connectString);
npgConnection2.Open();
foreach (var t in _tableNames)
{
string sqlColumns = "select column_name from information_schema.columns where table_name='"+ t +"';";
NpgsqlCommand npgCommand2 = new NpgsqlCommand(sqlColumns, npgConnection2);
NpgsqlDataReader reader2 = npgCommand2.ExecuteReader();
List<string> colTitles = new List<string>();
int i = 0;
while (reader2.Read())
{
colTitles.Add(reader2[i].ToString());
i++;
}
_layerObjects.Add(new LayerObject(t.ToString(),colTitles));
}
npgConnection2.Close();
while (reader2.Read())
{
colTitles.Add(reader2[i].ToString());
i++;
}
应替换为:
while (reader2.Read())
{
colTitles.Add(reader2[0].ToString());
}
i
是您的列索引 - 但您只有一列(您有多个 行 但只有一列)。所以它应该总是 0.
我已经使用 PostgreSQL/NpgSQL 将 c# 桌面应用程序连接到 PostgreSQL 数据库。第一个任务是 return 我数据库中的所有 table 名称,它工作正常。根据这个结果,我想得到每个 table 的所有列名。但问题是 NpgDatareader 总是有一个列是 table 的第一列,它不包含其他列名。任何提示或帮助将不胜感激。
NpgsqlConnection npgConnection2 = new NpgsqlConnection(connectString);
npgConnection2.Open();
foreach (var t in _tableNames)
{
string sqlColumns = "select column_name from information_schema.columns where table_name='"+ t +"';";
NpgsqlCommand npgCommand2 = new NpgsqlCommand(sqlColumns, npgConnection2);
NpgsqlDataReader reader2 = npgCommand2.ExecuteReader();
List<string> colTitles = new List<string>();
int i = 0;
while (reader2.Read())
{
colTitles.Add(reader2[i].ToString());
i++;
}
_layerObjects.Add(new LayerObject(t.ToString(),colTitles));
}
npgConnection2.Close();
while (reader2.Read())
{
colTitles.Add(reader2[i].ToString());
i++;
}
应替换为:
while (reader2.Read())
{
colTitles.Add(reader2[0].ToString());
}
i
是您的列索引 - 但您只有一列(您有多个 行 但只有一列)。所以它应该总是 0.