how can i loop through all of the columns of the OracleDataReader

好久不见. 提交于 2019-12-30 03:12:07

问题


I have the following code and i want to loop through all the fields in the result of this query and populate the dictionary called field.

Given a datareader is this possible?

            OracleCommand command = connection.CreateCommand();
            string sql = "Select * from MYTABLE where ID = " + id;
            command.CommandText = sql;

            Dictionary<string, string> fields = new Dictionary<string, string>();
            OracleDataReader reader = command.ExecuteReader();

回答1:


You should be able to do something like this:

Dictionary<string, string> fields = new Dictionary<string, string>();
OracleDataReader reader = command.ExecuteReader();

if( reader.HasRows )
{
    for( int index = 0; index < reader.FieldCount; index ++ )
    {
        fields[ reader.GetName( index ) ] = reader.GetString( index );
    }    
}



回答2:


GetSchemaTable will return a lot of information about the columns, including their name but also size, type, etc.

I presume you want the key of the dictionary to be the column name, and the value to be the row value. If so, this should work:

var dict = reader.GetSchemaTable().Rows.OfType<DataRow>().Select(
    r => r["ColumnName"].ToString()
).ToDictionary(
    cn => cn,
    cn => reader[cn].ToString()
);

You could also use GetValues() to get the number of columns, and call GetName(int) for each.



来源:https://stackoverflow.com/questions/2994539/how-can-i-loop-through-all-of-the-columns-of-the-oracledatareader

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!