หลังจากเชื่อมต่อกับฐานข้อมูลที่ผมได้รับชื่อของคอลัมน์ทั้งหมดที่ถูกส่งกลับมาในของฉันSqlDataReader
?
หลังจากเชื่อมต่อกับฐานข้อมูลที่ผมได้รับชื่อของคอลัมน์ทั้งหมดที่ถูกส่งกลับมาในของฉันSqlDataReader
?
คำตอบ:
var reader = cmd.ExecuteReader();
var columns = new List<string>();
for(int i=0;i<reader.FieldCount;i++)
{
columns.Add(reader.GetName(i));
}
หรือ
var columns = Enumerable.Range(0, reader.FieldCount).Select(reader.GetName).ToList();
columns = Enumerable.Range(0, reader.FieldCount) .Select(reader.GetName).ToList();
SELECT id AS "MyId" FROM table;
มีGetName
ฟังก์ชั่นSqlDataReader
ที่ยอมรับดัชนีคอลัมน์และส่งคืนชื่อของคอลัมน์
ในทางกลับกันมีสิ่งGetOrdinal
ที่ใช้ในชื่อคอลัมน์และส่งกลับดัชนีคอลัมน์
GetOrdinal
สมบูรณ์แบบ ผมกำลังมองหาแต่วิธีการแก้ปัญหามากสะอาดสำหรับปัญหาของฉันด้วยGetName
GetOrdinal
คุณสามารถรับชื่อคอลัมน์จาก DataReader
นี่คือส่วนสำคัญ:
for (int col = 0; col < SqlReader.FieldCount; col++)
{
Console.Write(SqlReader.GetName(col).ToString()); // Gets the column name
Console.Write(SqlReader.GetFieldType(col).ToString()); // Gets the column type
Console.Write(SqlReader.GetDataTypeName(col).ToString()); // Gets the column database type
}
พูดถึงแล้ว เพียงคำตอบของLINQ :
var columns = reader.GetSchemaTable().Rows
.Cast<DataRow>()
.Select(r => (string)r["ColumnName"])
.ToList();
//Or
var columns = Enumerable.Range(0, reader.FieldCount)
.Select(reader.GetName)
.ToList();
อันที่สองนั้นสะอาดกว่าและเร็วกว่ามาก แม้ว่าคุณจะแคชGetSchemaTable
ในแนวทางแรกการสืบค้นจะช้ามาก
reader.Cast<IDataRecord>().ToList()
สามารถทำ ฉันเชื่อว่าคุณสามารถใช้dynamic
คำหลักที่นั่นแทนIDataRecord
แต่ไม่มีประโยชน์ DataTable
ถูกออกแบบมาเพื่อความสะดวกในการโหลดเพียงครั้งเดียวเพื่อให้คุณสามารถใช้ที่มากเกินไป แต่คุณจะสูญเสียผลประโยชน์ของการโหลดตามความต้องการ (มีผู้อ่านข้อมูลที่คุณสามารถหยุดการโหลดที่จุดใด ๆ ) var dt = new DataTable(); dt.Load(reader); return dt.AsEnumerable().ToList();
เช่น มีห้องสมุดจำนวนมากซึ่งสามารถอัตโนมัตินี้คุณจะพบพวกเขาที่นี่stackoverflow.com/questions/11988441และนี่stackoverflow.com/questions/1464883
reader.Cast<IEnumerable<dynamic>>
และ.Cast<dynamic>
แต่ก็บอกว่าCannot convert method group 'Cast' to non-delegate type 'dynamic'. Did you intend to invoke the method?
ทำอะไรที่ไม่ถูกต้องมี? (ฉันดูที่แหล่งที่มาของคุณ แต่พวกเขาต้องการให้คุณรู้ชื่อคอลัมน์ซึ่งฉันไม่ได้ทำ)
หากคุณต้องการชื่อคอลัมน์เท่านั้นคุณสามารถทำได้:
List<string> columns = new List<string>();
using (SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.SchemaOnly))
{
DataTable dt = reader.GetSchemaTable();
foreach (DataRow row in dt.Rows)
{
columns.Add(row.Field<String>("ColumnName"));
}
}
แต่ถ้าคุณต้องการเพียงแถวเดียวฉันชอบการเพิ่ม AdoHelper ของฉัน การเพิ่มนี้เป็นสิ่งที่ดีถ้าคุณมีคิวรีบรรทัดเดียวและคุณไม่ต้องการจัดการกับตารางข้อมูลในโค้ดของคุณ มันกำลังส่งคืนพจนานุกรมที่ไม่สนใจตัวพิมพ์เล็กของชื่อคอลัมน์และค่า
public static Dictionary<string, string> ExecuteCaseInsensitiveDictionary(string query, string connectionString, Dictionary<string, string> queryParams = null)
{
Dictionary<string, string> CaseInsensitiveDictionary = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
using (SqlCommand cmd = new SqlCommand())
{
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = query;
// Add the parameters for the SelectCommand.
if (queryParams != null)
foreach (var param in queryParams)
cmd.Parameters.AddWithValue(param.Key, param.Value);
using (SqlDataReader reader = cmd.ExecuteReader())
{
DataTable dt = new DataTable();
dt.Load(reader);
foreach (DataRow row in dt.Rows)
{
foreach (DataColumn column in dt.Columns)
{
CaseInsensitiveDictionary.Add(column.ColumnName, row[column].ToString());
}
}
}
}
conn.Close();
}
}
catch (Exception ex)
{
throw ex;
}
return CaseInsensitiveDictionary;
}
throw ex;
เป็นการปฏิบัติที่เลวร้ายที่สุด
ฉันใช้เมธอดGetSchemaTableซึ่งแสดงผ่านส่วนต่อประสาน IDataReader
ใช้วิธีการขยาย:
public static List<string> ColumnList(this IDataReader dataReader)
{
var columns = new List<string>();
for (int i = 0; i < dataReader.FieldCount; i++)
{
columns.Add(dataReader.GetName(i));
}
return columns;
}
คุณสามารถทำได้
protected void GetColumNames_DataReader()
{
System.Data.SqlClient.SqlConnection SqlCon = new System.Data.SqlClient.SqlConnection("server=localhost;database=northwind;trusted_connection=true");
System.Data.SqlClient.SqlCommand SqlCmd = new System.Data.SqlClient.SqlCommand("SELECT * FROM Products", SqlCon);
SqlCon.Open();
System.Data.SqlClient.SqlDataReader SqlReader = SqlCmd.ExecuteReader();
System.Int32 _columncount = SqlReader.FieldCount;
System.Web.HttpContext.Current.Response.Write("SqlDataReader Columns");
System.Web.HttpContext.Current.Response.Write(" ");
for ( System.Int32 iCol = 0; iCol < _columncount; iCol ++ )
{
System.Web.HttpContext.Current.Response.Write("Column " + iCol.ToString() + ": ");
System.Web.HttpContext.Current.Response.Write(SqlReader.GetName( iCol ).ToString());
System.Web.HttpContext.Current.Response.Write(" ");
}
}
นี้มาจาก: http://www.dotnetjunkies.ddj.com/Article/B82A22D1-8437-4C7A-B6AA-C6C9BE9DB8A6.dcik
มันง่ายกว่าที่จะบรรลุใน SQL
var columnsList = dbContext.Database.SqlQuery<string>("SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'SCHEMA_OF_YOUE_TABLE' AND TABLE_NAME = 'YOUR_TABLE_NAME'").ToList();