5

我正在尝试获取给定的每列的数据类型以进行一些验证,我已经尝试过,getSchemaTable但它只给了我没有值的表的架构。

例如,我的数据库中有一个表和一个列名:id_declarant。我想从中检索值的数据类型和大小id_declarant

这是代码:

comm.Connection=new SqlConnection(connectionString);
String sql = @"
            SELECT * 
            FROM id_declarant,declarant
            WHERE (declarant.Nom_pren_RS='" + textBox1.Text + "') 
            and   (id_declarant.mat_fisc=declarant.mat_fisc)  "; 
comm.CommandText = sql;
comm.Connection.Open();
string mat_fisc;
string clé_mat_fisc;
string categorie ;
string num_etab_sec ;
string activite;
StringBuilder sb = new StringBuilder();
String Nom = textBox1.Text;
using (SqlDataReader reader = comm.ExecuteReader())
{
    while (reader.Read())
    {
        //here i want to know how to retrieve the reader[0].Type and Size to do the verification 
         mat_fisc = reader[0].ToString();
         clé_mat_fisc = reader["clé_mat_fisc"].ToString();
         categorie = reader["categorie"].ToString();
         num_etab_sec = reader["num_etab_sec"].ToString();
         activite = reader["activite"].ToString();
         sb.Append("EF" + mat_fisc + clé_mat_fisc + categorie + num_etab_sec + textBox2.Text + textBox3.Text + Nom + activite);
4

4 回答 4

5
Type type = reader.GetFieldType(0);
于 2013-06-24T08:38:19.810 回答
3

请使用函数 GetTableSchema 。

SqlDataReader reader= command.ExecuteReader();

using (var schemaTable = reader.GetSchemaTable())
    {
        foreach (DataRow row in schemaTable.Rows)
        {
            string ColumnName= row.Field<string>("ColumnName");
            string DataTypeName= row.Field<string>("DataTypeName");
            short NumericPrecision= row.Field<short>("NumericPrecision");
            short NumericScale= row.Field<short>("NumericScale");
            int ColumnSize= row.Field<int>("ColumnSize");
            Console.WriteLine("Column: {0} Type: {1} Precision: {2} Scale: {3} ColumnSize {4}",      
            ColumnName, DataTypeName, NumericPrecision, NumericScale, ColumnSize);
        }
    }

使用 Table 架构,您可以使用 c# 获取所有与列相关的属性。

谢谢 。

于 2016-10-26T12:59:59.810 回答
0

您可以使用 GetDataTypeName() 函数来获取字段的数据类型

   String dataType = reader.GetDataTypeName(FIELD_INDEX);
于 2014-02-25T09:57:04.953 回答
0
public string ReadString(IDataReader reader, string columnName) {

string myString = "";

var index = reader.GetOrdinal(columnName);

var fieldType = reader.GetFieldType(index);

if (fieldType.FullName.Contains("Guid"))
{
myString = reader.IsDBNull(index) ? "" : reader.GetGuid(index).ToString();
}
else
{
myString = reader.IsDBNull(index) ? "" : reader.GetString(index);
}
return myString;
}
于 2016-07-06T15:33:26.807 回答