我还是C#的新手所以请耐心等待。我有一个Access数据库,其表格如下所示:
ID1 ID2 Name
----------------------
1111 1234567 Joe
2222 1234567 Patricia
3333 7654321 Laurie
这些字段都不包含空值。我正在尝试在DataTable
中存储每列值的最长文本表示的长度。
根据rein对this similar question的回答,我加入了这个方便的通用函数:
public static T ConvertFromDBVal<T>(object obj)
{
if (obj == null || Convert.IsDBNull(obj))
return default(T);
else
return (T)obj;
}
我从表中获取数据如下:
public DataTable GetMetadata(string tableName)
{
...
// My OLEDB connection _oleConnection is already open
OleDbCommand selectTable = new OleDbCommand("SELECT * FROM [" +
tableName + "]", _oleConnection);
OleDbDataReader oleReader = selectTable.ExecuteReader();
DataTable schemaTable = oleReader.GetSchemaTable().Copy();
schemaTable.Columns.Add("_maxCharLength", typeof(int));
foreach (DataRow schemaRow in schemaTable.Rows)
{
OleDbCommand getMax = new OleDbCommand();
getMax.Connection = _oleConnection;
// Convert non-text fields to strings before getting lengths
if (schemaRow.Field<Type>("DataType") == typeof(string))
{
getMax.CommandText = "SELECT MAX(LEN(" +
schemaRow.Field<string>("ColumnName") + ")) FROM " +
tableName;
}
else
{
getMax.CommandText = "SELECT MAX(LEN(STR(" +
schemaRow.Field<string>("ColumnName") + "))) FROM " +
tableName;
}
int maxCharLength = ConvertFromDBVal<int>(getMax.ExecuteScalar());
schemaRow.SetField(schemaRow.Field<int>("_maxCharLength"),
maxCharLength);
getMax.Dispose();
getMax = null;
}
...
return schemaTable;
}
调试器对schemaRow.SetField(...)
感到生气并说:
Cannot cast DBNull.Value to type 'System.Int32'. Please use a nullable type.
所以我尝试使用可空类型。我换了
schemaTable.Columns.Add("_maxCharLength", typeof(int?)); // was typeof(int)
然后调试器说
DataSet does not support System.Nullable<>.
所以我把它改回int
。即使我使用该函数转换任何空值,我在foreach
循环中检查了值及其类型,如下所示:
Console.WriteLine("{0}, {1}, {2}, {3}",
tableName,
schemaRow.Field<string>("ColumnName"),
maxCharLength,
maxCharLength.GetType());
这完全没有问题。我在控制台中获得以下内容:
Table1, ID1, 4, System.Int32
Table1, ID2, 7, System.Int32
Table1, Name, 8, System.Int32
没有空值,没有例外,一切都如我所料。那么为什么SetField
不允许我将这些值放在DataTable
?
答案 0 :(得分:2)
我认为您需要将SetField的行更改为
schemaRow.SetField("_maxCharLength", maxCharLength);
DataRow.SetField扩展名的第一个参数需要列的名称,或者列集合或DataColumn实例中列的序号位置。
错误消息是由于您尝试使用maxCharLength
扩展名读取_ DataRow.Field<T>
字段的值而引起的。但是在代码的那一点上,_maxCharLength
字段仍为null,因为您尚未为其设置任何值。
编译器无法警告您此错误,因为从逻辑角度来看,您正在调用SetField扩展的有效重载。需要整数来表示列的序号位置以设置值的那个。